我正在编写一个 nodejs 5.10.1 应用程序,并连接到一个 redis 服务器。
我正在使用来自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.
不太了解它的含义或如何使用它。有任何想法吗 ?