Client

client API

Constructors

this
this(string url, ConnectionMaker connectionMaker)

Constructor

Members

Functions

close
void close()
Undocumented in source. Be warned that the author may not have intended to support it.
execCommand
RedisdValue execCommand(A args)

build and execute single redis command.

get
RedisdValue get(K k)

Simple key/value get

makeCommand
RedisdValue makeCommand(A args)

Build redis command from command name and args. All args must be of type string.

pipeline
RedisdValue[] pipeline(RedisdValue[] commands)

build and execute redis pipeline from commands array.

read
RedisdValue read()

Consume reply

set
RedisdValue set(K k, V v)

Simple key/value set

transaction
RedisdValue transaction(RedisdValue[] commands)

Build and execute redis transaction from command array.

Meta