redis-node-client
redis-node-client copied to clipboard
Redis client for Node.js (abandoned)
TypeError: Cannot read property 'length' of null at Client.handlePublishedMessage_ (/home/phazm/.node_libraries/redis-node-client/lib/redis-client.js:423:42) at Client.onReply_ (/home/phazm/.node_libraries/redis-node-client/lib/redis-client.js:390:14) at /home/phazm/.node_libraries/redis-node-client/lib/redis-client.js:136:34 at ReplyParser.feed (/home/phazm/.node_libraries/redis-node-client/lib/redis-client.js:198:25) at Stream. (/home/phazm/.node_libraries/redis-node-client/lib/redis-client.js:337:28) at Stream.emit (events:25:26) at IOWatcher.callback (net:369:16) at node.js:204:9 Using...
Getting this when I connect to Redis: TypeError: Cannot read property 'length' of undefined /usr/local/lib/node/.npm/redis-client/0.3.5/package/lib/redis-client.js:394 var callback = originalCommand[originalCommand.length - 1];
The Buffer.toString() you implemented just screwed things up by recursing until the stack was blown :) I've renamed the zinter/zunion commands. All tests pass with latest redis-git. The utf8Slice etc....
Hi, http://github.com/ajaxorg/redis-node-client/commit/2a09ff0e2977c29d5034d714a3838057458fd704 This fix is critical since otherwise the callback is never called, which can break the control flow of the calling code. Please pull. Thanks, Fabian
So it should work without monkeying around with the paths: % node Type '.help' for options. node> var sys = require("sys"); node> var client = require("redis-client").createClient(); node>
I cannot make this version or the fork that claims to have fixed work with Node 0.2.4. 0.2.3 is absolutely fine however but on .4 I get no callbacks from...
To reproduce, 1. create a script having a redis client object and a "noconnection" listener 2. kill redis 3. run the script - noconnection event fires as expected 4. start...
I am a active redis user and community member and wanted to try out redis on node.js I installed the latest source from git for (node, redis, redis-node-client) Both redis...
A bunch of buffer methods have changed (no more utf8Write or utf8Slice for example). The tests fail with Node as of this commit - http://github.com/ry/node/commit/85fb47c11cc985889be9c1a802cfc0331d8ad7a8 . I think it's still...