在Node.js應(yīng)用中讀寫Redis數(shù)據(jù)庫(kù)的簡(jiǎn)單方法
在開始本文之前請(qǐng)確保安裝好 Redis 和 Node.js 以及 Node.js 的 Redis 擴(kuò)展 —— node_redis
首先創(chuàng)建一個(gè)新文件夾并新建文本文件 app.js 文件內(nèi)容如下:
var redis = require("redis")
, client = redis.createClient();
client.on("error", function (err) {
console.log("Error " + err);
});
client.on("connect", runSample);
function runSample() {
// Set a value
client.set("string key", "Hello World", function (err, reply) {
console.log(reply.toString());
});
// Get a value
client.get("string key", function (err, reply) {
console.log(reply.toString());
});
}
當(dāng)連接到 Redis 后會(huì)調(diào)用 runSample 函數(shù)并設(shè)置一個(gè)值,緊接著便讀出該值,運(yùn)行的結(jié)果如下:
OK Hello World
我們也可以使用 EXPIRE 命令來(lái)設(shè)置對(duì)象的失效時(shí)間,代碼如下:
var redis = require('redis')
, client = redis.createClient();
client.on('error', function (err) {
console.log('Error ' + err);
});
client.on('connect', runSample);
function runSample() {
// Set a value with an expiration
client.set('string key', 'Hello World', redis.print);
// Expire in 3 seconds
client.expire('string key', 3);
// This timer is only to demo the TTL
// Runs every second until the timeout
// occurs on the value
var myTimer = setInterval(function() {
client.get('string key', function (err, reply) {
if(reply) {
console.log('I live: ' + reply.toString());
} else {
clearTimeout(myTimer);
console.log('I expired');
client.quit();
}
});
}, 1000);
}
注意: 上述使用的定時(shí)器只是為了演示 EXPIRE 命令,你必須在 Node.js 項(xiàng)目中謹(jǐn)慎使用定時(shí)器。
運(yùn)行上述程序的輸出結(jié)果是:
Reply: OK I live: Hello World I live: Hello World I live: Hello World I expired
接下來(lái)我們檢查一個(gè)值在失效之前存留了多長(zhǎng)時(shí)間:
var redis = require('redis')
, client = redis.createClient();
client.on('error', function (err) {
console.log('Error ' + err);
});
client.on('connect', runSample);
function runSample() {
// Set a value
client.set('string key', 'Hello World', redis.print);
// Expire in 3 seconds
client.expire('string key', 3);
// This timer is only to demo the TTL
// Runs every second until the timeout
// occurs on the value
var myTimer = setInterval(function() {
client.get('string key', function (err, reply) {
if(reply) {
console.log('I live: ' + reply.toString());
client.ttl('string key', writeTTL);
} else {
clearTimeout(myTimer);
console.log('I expired');
client.quit();
}
});
}, 1000);
}
function writeTTL(err, data) {
console.log('I live for this long yet: ' + data);
}
運(yùn)行結(jié)果:
Reply: OK I live: Hello World I live for this long yet: 2 I live: Hello World I live for this long yet: 1 I live: Hello World I live for this long yet: 0 I expired
相關(guān)文章
Express URL跳轉(zhuǎn)(重定向)的實(shí)現(xiàn)方法
Express是一個(gè)基于Node.js實(shí)現(xiàn)的Web框架,其響應(yīng)HTTP請(qǐng)求的response對(duì)象中有兩個(gè)用于URL跳轉(zhuǎn)方法res.location()和res.redirect(),使用它們可以實(shí)現(xiàn)URL的301或302重定向。2017-04-04
解決nodejs的npm命令無(wú)反應(yīng)的問題
今天小編就為大家分享一篇解決nodejs的npm命令無(wú)反應(yīng)的問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來(lái)看看吧2018-05-05
express中創(chuàng)建 websocket 接口及問題解答
本文主要介紹了express中創(chuàng)建 websocket 接口及問題解答,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2022-05-05
node強(qiáng)緩存和協(xié)商緩存實(shí)戰(zhàn)示例
這篇文章主要為大家介紹了node強(qiáng)緩存和協(xié)商緩存實(shí)戰(zhàn)示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-07-07
Mongoose經(jīng)常返回e11000 error的原因分析
這篇文章主要給大家分析了Mongoose經(jīng)常返回e11000 error的原因,文中介紹的非常詳細(xì),對(duì)大家具有一定的參考價(jià)值,需要的朋友可以們下面來(lái)一起看看吧。2017-03-03
如何使用?Node.js?將?MongoDB?連接到您的應(yīng)用程序
NoSQL?數(shù)據(jù)庫(kù)對(duì)于處理大量分布式數(shù)據(jù)非常有用,我們可以在這個(gè)數(shù)據(jù)庫(kù)中存儲(chǔ)信息,對(duì)其進(jìn)行管理,這篇文章主要介紹了使用?Node.js?將?MongoDB?連接到您的應(yīng)用程序,需要的朋友可以參考下2022-09-09
visual studio配置node.js開發(fā)的圖文教程
在進(jìn)行node開發(fā)時(shí),使用visual studio作為開發(fā)工具是非常常見的選擇,本文主要介紹了visual studio配置node.js開發(fā)的圖文教程,具有一定的參考價(jià)值,感興趣的可以了解一下2024-05-05
Koa從零搭建到Api實(shí)現(xiàn)項(xiàng)目的搭建方法
這篇文章主要介紹了Koa從零搭建到Api實(shí)現(xiàn)項(xiàng)目的搭建方法,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-07-07

