节点Redis命令不会运行?

时间:2017-02-19 02:54:34

标签: javascript node.js redis

这令人难以置信。

我有一个BLPOP,触发下面的源代码。当第一次触发源时,只有第一个Redis调用被触发...第二个没有被触发,直到有另一个pop并且源代码再次运行?

null
DEBUG - 8621 - Sat Feb 18 2017 20:47:53 GMT-0600 (CST) - 5 totalConnections 2000
null
DEBUG - 8621 - Sat Feb 18 2017 20:47:54 GMT-0600 (CST) - 5 expectedConnections 500
null
DEBUG - 8621 - Sat Feb 18 2017 20:47:54 GMT-0600 (CST) - 5 totalConnections 2100

来源

const expectedConnectionsKey = ['test', id, 'expectedConnections'].join(':');
const totalConnectionsKey = ['test', id, 'connections'].join(':');
watcher.client.incrby(totalConnectionsKey, connections, (error, totalConnections) => {
    console.log(error);
    log.debug(id, 'totalConnections', totalConnections);
    watcher.client.get(expectedConnectionsKey, (error, expectedConnections) => {
        console.log(error);
        log.debug(id, 'expectedConnections', expectedConnections);
    });
});

1 个答案:

答案 0 :(得分:0)

问题在于时间......

我在同一个频道上使用了blpop,并且在blpop再次开始等待之前,只有一个命令被执行了。