![Build Status](https://travis-ci.org/redis/hiredis-node.png?branch=master)
hiredis-node
Node extension that wraps hiredis.
Because Node is already good at doing I/O, hiredis-node only provides
bindings to the protocol parser.
The hiredis protocol parser is faster than JavaScript protocol parsers,
but the speedup only becomes noticable for large replies.
If you use Redis for simple SET/GET operations, there won't be a big
benefit to using hiredis.
If you use Redis for big SUNION/SINTER/LRANGE/ZRANGE operations, the
benefit to using hiredis-node can be significant.
Install
Install with NPM:
npm install hiredis
Usage
hiredis-node works out of the box with Matt Ranney's node_redis.
The latter has an optional dependency on hiredis-node, so maybe you're
already using it without knowing.
Alternatively, you can use it directly:
var hiredis = require("hiredis"),
reader = new hiredis.Reader();
reader.feed("$5\r\nhello\r\n");
reader.get()
Instead of returning strings for bulk payloads, it can also return
buffers:
var hiredis = require("hiredis"),
reader = new hiredis.Reader({ return_buffers: true });
reader.feed("$5\r\nhello\r\n");
reader.get()
Windows
Dmitry Gorbunov (@fuwaneko) made a fork of hiredis-node with Windows support.
License
This code is released under the BSD license, after the license of hiredis.