Set

Set A class that represents a SET structure in redis. Allows you to query and manipulate the set using methods. Implements OutputRange.

NOTE: Operations are done on the server side as much as possible, to reflect the true state of the collection.

Constructors

this
this(Redis conn, string name)
Undocumented in source.

Members

Aliases

count
alias count = scard
Undocumented in source.

Functions

del
void del()
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
void opAssign(const(char[])[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
void opAssign(const(char[]) value)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
void opOpAssign(const(char[]) value)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
void opOpAssign(const(char[])[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
put
void put(const(char[]) value)
Undocumented in source. Be warned that the author may not have intended to support it.
put
void put(const(char[])[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
scard
int scard()
Undocumented in source. Be warned that the author may not have intended to support it.
smembers
Response smembers()
Undocumented in source. Be warned that the author may not have intended to support it.
srem
bool srem(const(char[]) value)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta