Client

client API

Constructors

this
this(string url)

Constructor

Members

Functions

close
void close()
Undocumented in source. Be warned that the author may not have intended to support it.
connect
void connect()
Undocumented in source. Be warned that the author may not have intended to support it.
connected
bool connected()
Undocumented in source. Be warned that the author may not have intended to support it.
errno
auto errno()
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

strerror
auto strerror()
Undocumented in source. Be warned that the author may not have intended to support it.
transaction
RedisdValue transaction(RedisdValue[] commands)

Build and execute redis transaction from command array.

Meta