Redis

Undocumented in source.

Constructors

this
this(string host, ushort port)

Create a new connection to the Redis server

Members

Functions

eval
Response eval(string lua_script, K[] keys, A[] args)

Simplified call to EVAL

evalSha
Response evalSha(string sha1, K[] keys, A[] args)
Undocumented in source. Be warned that the author may not have intended to support it.
pipeline
Response[] pipeline(C[][] commands)

Send a series of commands as a pipeline

send
R send(string key, T args)

Call Redis using any type T that can be converted to a string

send
R send(string cmd)
Undocumented in source. Be warned that the author may not have intended to support it.
sendRaw
R sendRaw(string cmd)

Send a string that is already encoded in the Redis protocol

transaction
Response[] transaction(string[] commands, bool all)

Execute commands in a MULTI/EXEC block.

Meta