我使用以下方法连接到localhost上的redis: -
var redisClient = require('redis').createClient({
host: 'localhost',
port: 6379,
db: 0,
pass: 'RedisPASS'
});
如何在heroku上连接RedisToGo。我使用node.js我已经通过了question但是跟随了很多。
var redisClient = require('redis').createClient({
host: 'http: //abc.com',
port: 9344,
db: 0,
requirepass: 'abc1234'
});
以上不起作用。
我从RedisToGo应用程序详细信息中获取port no. 9344
和requirepass详细信息。