RedisObject

Models a single strongly typed object.

This structure is rougly equivalent to a value of type T. The underlying data is represented as a Redis hash. This means that only primitive fields are supported for T.

Constructors

this
this(RedisDatabase db, string key)
Undocumented in source.
this
this(RedisHash!string hash)
Undocumented in source.

Alias This

get

Members

Functions

opAssign
void opAssign(T val)
Undocumented in source. Be warned that the author may not have intended to support it.
remove
void remove()
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

exists
bool exists [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
get
T get [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Meta