Redis

Undocumented in source.

Constructors

this
this(string host, ushort port)

Create a new connection to the Redis server

Members

Functions

close
void close()
Undocumented in source. Be warned that the author may not have intended to support it.
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)
Undocumented in source. Be warned that the author may not have intended to support it.
send
R send(string key, T args)

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

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.

Variables

conn
TcpSocket conn;
Undocumented in source.

Meta