在Node.js應用中讀寫Redis資料庫的簡單方法_node.js

來源:互聯網
上載者:User

 在開始本文之前請確保安裝好 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

 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.