Redis

Constructors

this
this(string host = "127.0.0.1", ushort port = 6379, string password = "")

Create a new connection to the Redis server

Members

Functions

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

Simplified call to EVAL

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

sendRaw
R sendRaw(string cmd)

Send a string that is already encoded in the Redis protocol

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

Execute commands in a MULTI/EXEC block.

Meta