小编典典

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

redis

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

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


阅读 298

收藏
2020-06-20

共1个答案

小编典典

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

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()并为production或设置选项development

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

有关expressjs中的开发/生产的更多信息:http
://expressjs.com/guide.html#configuration

node_redis .select(db, callback)如果选择数据库回调函数将在第二个参数返回OK。可以在node_redis自述文件的“
用法”部分中看到此示例。

2020-06-20