我正在编写nodejs 5.10.1应用程序,并且我连接到redis-server。
我正在使用https://github.com/luin/ioredis中的ioredis nodejs模块。
我似乎无法弄清楚如何检查是否已建立与服务器的连接。
连接到redis服务器的代码非常简单:
var Redis = require('ioredis');
var redis = new Redis();
文档在连接事件
下声明了以下内容You can also check out the Redis#status property to get the current connection status.
并不真正理解它的含义或如何使用它。任何想法?
答案 0 :(得分:6)
您启动的redis对象的一个属性是status
:
console.log(redis.status)
会根据我的情况向您提供最新信息:connecting