0.1.1 • Published 11 years ago

node-redis-raw v0.1.1

Weekly downloads
13
License
-
Repository
github
Last release
11 years ago

Redis Raw Mode

This package monkey patches node-redis to support writing raw commands to Redis. This is extremely useful in cases when you want to work with the native redis command protocol, without invoking the penalties for parsing the commands.

Useful for low level applications like proxies. It is use in the Redis-Proxy.

Usage

require('raw-redis')

The only public API it adds to the redis client API is sendRaw

It is used as following

var r = require('redis')

var cl = r.createClient()

cl.sendRaw("*3\r\n$3\r\nSET\r\n$5\r\nmykey\r\n$7\r\nmyvalue\r\n", function(err, res) {console.log(res);});