A Redis client implementation for JavaScript (Node, Google V8)
A Redis client implementation for Node.js which runs atop Google V8.
This project lets you access a Redis instance using server-side JavaScript.
Node.js does not block on I/O operations.
This means that while a typical Redis client might have code that accesses a
Redis server in a blocking call, Node.js-based code cannot.
Typical Redis client (e.g. Python):
foo = client.get('counter')
This Node.js-based Redis client:
var sys = require("sys");
var redis = require("./redis");
var client = new redis.Client();
client.connect(learn_to_count);
function learn_to_count () {
client.incr('counter').addCallback(function (value) {
sys.puts("counter is now " + value);
client.close();
});
}
Running this example, we’d see:
$ node counter-example.js
counter is now 1
$ node counter-example.js
counter is now 2
$ node counter-example.js
counter is now 3
That is, you must supply a callback function that is called when Redis returns,
even if Redis queries are extremely fast.
A potential upside to this slightly awkward requirement is that you can enjoy
the benefits of pipelining many Redis queries in a non-blocking way. Redis
returns replies for requests in the order received.
See the test.js
file as a good example of this.
To test:
node test.jsBrian Hammond, Fictorial (brian at fictorial dot com)
Copyright © 2009 Fictorial LLC
See LICENSE (it’s MIT; go nuts).
We use cookies
We use cookies to analyze traffic and improve your experience. You can accept or reject analytics cookies.