国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

在Node.js應用中讀寫Redis數據庫的簡單方法

2019-11-20 12:08:09
字體:
來源:轉載
供稿:網友

 在開始本文之前請確保安裝好 Redis 和 Node.js 以及 Node.js 的 Redis 擴展 ―― node_redis

首先創建一個新文件夾并新建文本文件 app.js 文件內容如下:
 

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());  });}

當連接到 Redis 后會調用 runSample 函數并設置一個值,緊接著便讀出該值,運行的結果如下:
 

OKHello World

我們也可以使用 EXPIRE 命令來設置對象的失效時間,代碼如下:
 

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);}

注意: 上述使用的定時器只是為了演示 EXPIRE 命令,你必須在 Node.js 項目中謹慎使用定時器。

運行上述程序的輸出結果是:

 

Reply: OKI live: Hello WorldI live: Hello WorldI live: Hello WorldI expired

接下來我們檢查一個值在失效之前存留了多長時間:
 

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);}

運行結果:
 

Reply: OKI live: Hello WorldI live for this long yet: 2I live: Hello WorldI live for this long yet: 1I live: Hello WorldI live for this long yet: 0I expired

 
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 枣强县| 黄陵县| 阳山县| 平利县| 滨州市| 佛教| 宜良县| 鲁甸县| 凌源市| 安平县| 遂川县| 双牌县| 乐平市| 罗源县| 南江县| 博爱县| 将乐县| 鄂温| 日土县| 慈利县| 阿拉善左旗| 科技| 崇义县| 富蕴县| 黑山县| 广州市| 红原县| 元阳县| 五原县| 临安市| 潮安县| 尤溪县| 苏尼特右旗| 涿鹿县| 青河县| 盱眙县| 全州县| 云南省| 大丰市| 颍上县| 修文县|