如何在node.js中为同一个应用程序分离redis数据库

时间:2011-06-10 10:14:05

标签: node.js redis key-value-store

我有两个相同的app运行在不同的一个用于演示,一个用于开发。而m使用redis数据库来存储键值,我如何为这两个不同的应用程序分离redis数据库。 m使用node.js为redis客户端。和m使用这个https://github.com/mranney/node_redis/ redis客户端。

如何在节点中为同一个应用程序分离redis数据库。

1 个答案:

答案 0 :(得分:22)

您可以在node_redis中使用.select(db, callback)函数。

var redis = require('redis'),
db = redis.createClient();

db.select(1, function(err,res){
  // you'll want to check that the select was successful here
  // if(err) return err;
  db.set('key', 'string'); // this will be posted to database 1 rather than db 0
});

如果您使用的是expressjs,则可以设置开发和生产环境变量以自动设置您正在使用的数据库。

var express = require('express'), 
app = express.createServer();

app.configure('development', function(){
  // development options go here
  app.set('redisdb', 5);
});

app.configure('production', function(){
  // production options here
  app.set('redisdb', 0);
});

然后,您可以拨打db.select()一个电话,并为productiondevelopment设置选项。

db.select(app.get('redisdb'), function(err,res){ // app.get will return the value you set above
  // do something here
});

有关expressjs中dev / production的更多信息:http://expressjs.com/guide.html#configuration

如果选择了数据库,node_redis .select(db, callback)回调函数将在第二个参数中返回OK。可以在Usagenode_redis readme部分看到此示例。