node.js應用Redis資料庫

來源:互聯網
上載者:User

標籤:

node.js下使用Redis,首先:

1、有一台安裝了Redis的伺服器,當然,安裝在本機也行

2、本機,也就是用戶端,要裝node.js

3、項目要安裝nodejs_redis模組

注意第 3 點,不是在本機安裝就行了,而是說,要在項目中安裝(引用)。

方法是,DOS視窗,在項目目錄下,輸入

npm install redis

這樣就將nodejs_redis下載一份,放到目前的目錄下了。看看,多了一個檔案夾:node_modules\redis

 

編寫以下代碼,儲存到目前的目錄下\hello.js

var redis = require("redis"),//召喚redis/*串連redis資料庫,createClient(port,host,options);如果REDIS在本機,連接埠又是預設,直接寫createClient()即可redis.createClient() = redis.createClient(6379, ‘127.0.0.1‘, {})*/client = redis.createClient(6379,‘192.168.159.128‘,{});//如果需要驗證,還要進行驗證//client.auth(password, callback);// if you‘d like to select database 3, instead of 0 (default), call// client.select(3, function() { /* ... */ });//錯誤監聽?client.on("error", function (err) {    console.log("Error " + err);});client.set("string key", "string val", redis.print);//set "string key" "string val"/*redis.print,回呼函數,將redis的傳回值顯示出來。上一句執行結果,將返回“OK”*/client.hset("hash key", "hashtest 1", "some value", redis.print);client.hset(["hash key", "hashtest 2", "some other value"], redis.print);//遍曆雜湊表"hash key"client.hkeys("hash key", function (err, replies) {    console.log(replies.length + " replies:");    replies.forEach(function (reply, i) {        console.log("    " + i + ": " + reply);    });client.hget("hash key","hashtest 1",redis.print);    /*兩種都可以斷掉與redis的串連,end()很粗暴,不管3721,一下子退出來了,上面那句擷取雜湊表"hash key"的某個元素值的運算式將沒有結果返回而quit()則是先將語句處理完畢再乾淨地退出,斯文得很*///client.end();client.quit();});

  

node.js應用Redis資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.