標籤:
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資料庫