PipelineBase

Undocumented in source.
abstract
class PipelineBase : Queable , BinaryRedisPipeline , RedisPipeline {}

Members

Functions

append
Response!(Long) append(string key, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
append
Response!(Long) append(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
bitcount
Response!(Long) bitcount(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
bitcount
Response!(Long) bitcount(string key, long start, long end)
Undocumented in source. Be warned that the author may not have intended to support it.
bitcount
Response!(Long) bitcount(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
bitcount
Response!(Long) bitcount(const(ubyte)[] key, long start, long end)
Undocumented in source. Be warned that the author may not have intended to support it.
bitfield
Response!(List!(Long)) bitfield(const(ubyte)[] key, const(ubyte)[][] elements)
Undocumented in source. Be warned that the author may not have intended to support it.
bitfield
Response!(List!(Long)) bitfield(string key, string[] elements)
Undocumented in source. Be warned that the author may not have intended to support it.
bitpos
Response!(Long) bitpos(string key, bool value)
Undocumented in source. Be warned that the author may not have intended to support it.
bitpos
Response!(Long) bitpos(string key, bool value, BitPosParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
bitpos
Response!(Long) bitpos(const(ubyte)[] key, bool value)
Undocumented in source. Be warned that the author may not have intended to support it.
bitpos
Response!(Long) bitpos(const(ubyte)[] key, bool value, BitPosParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
blpop
Response!(List!(string)) blpop(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
blpop
Response!(List!(const(ubyte)[])) blpop(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
brpop
Response!(List!(string)) brpop(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
brpop
Response!(List!(const(ubyte)[])) brpop(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
decr
Response!(Long) decr(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
decr
Response!(Long) decr(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
decrBy
Response!(Long) decrBy(string key, long decrement)
Undocumented in source. Be warned that the author may not have intended to support it.
decrBy
Response!(Long) decrBy(const(ubyte)[] key, long decrement)
Undocumented in source. Be warned that the author may not have intended to support it.
del
Response!(Long) del(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
del
Response!(Long) del(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
dump
Response!(const(ubyte)[]) dump(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
dump
Response!(const(ubyte)[]) dump(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
echo
Response!(string) echo(string string)
Undocumented in source. Be warned that the author may not have intended to support it.
echo
Response!(const(ubyte)[]) echo(const(ubyte)[] string)
Undocumented in source. Be warned that the author may not have intended to support it.
exists
Response!(Boolean) exists(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
exists
Response!(Boolean) exists(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
expire
Response!(Long) expire(string key, int seconds)
Undocumented in source. Be warned that the author may not have intended to support it.
expire
Response!(Long) expire(const(ubyte)[] key, int seconds)
Undocumented in source. Be warned that the author may not have intended to support it.
expireAt
Response!(Long) expireAt(string key, long unixTime)
Undocumented in source. Be warned that the author may not have intended to support it.
expireAt
Response!(Long) expireAt(const(ubyte)[] key, long unixTime)
Undocumented in source. Be warned that the author may not have intended to support it.
geoadd
Response!(Long) geoadd(const(ubyte)[] key, double longitude, double latitude, const(ubyte)[] member)
Undocumented in source. Be warned that the author may not have intended to support it.
geoadd
Response!(Long) geoadd(const(ubyte)[] key, Map!(const(ubyte)[], GeoCoordinate) memberCoordinateMap)
Undocumented in source. Be warned that the author may not have intended to support it.
geoadd
Response!(Long) geoadd(string key, double longitude, double latitude, string member)
Undocumented in source. Be warned that the author may not have intended to support it.
geoadd
Response!(Long) geoadd(string key, Map!(string, GeoCoordinate) memberCoordinateMap)
Undocumented in source. Be warned that the author may not have intended to support it.
geodist
Response!(Double) geodist(const(ubyte)[] key, const(ubyte)[] member1, const(ubyte)[] member2)
Undocumented in source. Be warned that the author may not have intended to support it.
geodist
Response!(Double) geodist(const(ubyte)[] key, const(ubyte)[] member1, const(ubyte)[] member2, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
geodist
Response!(Double) geodist(string key, string member1, string member2)
Undocumented in source. Be warned that the author may not have intended to support it.
geodist
Response!(Double) geodist(string key, string member1, string member2, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
geohash
Response!(List!(const(ubyte)[])) geohash(const(ubyte)[] key, const(ubyte)[][] members)
Undocumented in source. Be warned that the author may not have intended to support it.
geohash
Response!(List!(string)) geohash(string key, string[] members)
Undocumented in source. Be warned that the author may not have intended to support it.
geopos
Response!(List!(GeoCoordinate)) geopos(const(ubyte)[] key, const(ubyte)[][] members)
Undocumented in source. Be warned that the author may not have intended to support it.
geopos
Response!(List!(GeoCoordinate)) geopos(string key, string[] members)
Undocumented in source. Be warned that the author may not have intended to support it.
georadius
Response!(List!(GeoRadiusResponse)) georadius(const(ubyte)[] key, double longitude, double latitude, double radius, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
georadius
Response!(List!(GeoRadiusResponse)) georadius(const(ubyte)[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source. Be warned that the author may not have intended to support it.
georadius
Response!(List!(GeoRadiusResponse)) georadius(string key, double longitude, double latitude, double radius, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
georadius
Response!(List!(GeoRadiusResponse)) georadius(string key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusByMember
Response!(List!(GeoRadiusResponse)) georadiusByMember(const(ubyte)[] key, const(ubyte)[] member, double radius, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusByMember
Response!(List!(GeoRadiusResponse)) georadiusByMember(const(ubyte)[] key, const(ubyte)[] member, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusByMember
Response!(List!(GeoRadiusResponse)) georadiusByMember(string key, string member, double radius, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusByMember
Response!(List!(GeoRadiusResponse)) georadiusByMember(string key, string member, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusByMemberReadonly
Response!(List!(GeoRadiusResponse)) georadiusByMemberReadonly(const(ubyte)[] key, const(ubyte)[] member, double radius, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusByMemberReadonly
Response!(List!(GeoRadiusResponse)) georadiusByMemberReadonly(const(ubyte)[] key, const(ubyte)[] member, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusByMemberReadonly
Response!(List!(GeoRadiusResponse)) georadiusByMemberReadonly(string key, string member, double radius, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusByMemberReadonly
Response!(List!(GeoRadiusResponse)) georadiusByMemberReadonly(string key, string member, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusReadonly
Response!(List!(GeoRadiusResponse)) georadiusReadonly(const(ubyte)[] key, double longitude, double latitude, double radius, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusReadonly
Response!(List!(GeoRadiusResponse)) georadiusReadonly(const(ubyte)[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusReadonly
Response!(List!(GeoRadiusResponse)) georadiusReadonly(string key, double longitude, double latitude, double radius, GeoUnit unit)
Undocumented in source. Be warned that the author may not have intended to support it.
georadiusReadonly
Response!(List!(GeoRadiusResponse)) georadiusReadonly(string key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source. Be warned that the author may not have intended to support it.
get
Response!(string) get(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
get
Response!(const(ubyte)[]) get(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
getClient
Client getClient(string key)
Undocumented in source.
getClient
Client getClient(const(ubyte)[] key)
Undocumented in source.
getSet
Response!(const(ubyte)[]) getSet(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
getSet
Response!(string) getSet(string key, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
getbit
Response!(Boolean) getbit(const(ubyte)[] key, long offset)
Undocumented in source. Be warned that the author may not have intended to support it.
getbit
Response!(Boolean) getbit(string key, long offset)
Undocumented in source. Be warned that the author may not have intended to support it.
getrange
Response!(const(ubyte)[]) getrange(const(ubyte)[] key, long startOffset, long endOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
getrange
Response!(string) getrange(string key, long startOffset, long endOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
hdel
Response!(Long) hdel(const(ubyte)[] key, const(ubyte)[][] field)
Undocumented in source. Be warned that the author may not have intended to support it.
hdel
Response!(Long) hdel(string key, string[] field)
Undocumented in source. Be warned that the author may not have intended to support it.
hexists
Response!(Boolean) hexists(const(ubyte)[] key, const(ubyte)[] field)
Undocumented in source. Be warned that the author may not have intended to support it.
hexists
Response!(Boolean) hexists(string key, string field)
Undocumented in source. Be warned that the author may not have intended to support it.
hget
Response!(const(ubyte)[]) hget(const(ubyte)[] key, const(ubyte)[] field)
Undocumented in source. Be warned that the author may not have intended to support it.
hget
Response!(string) hget(string key, string field)
Undocumented in source. Be warned that the author may not have intended to support it.
hgetAll
Response!(Map!(const(ubyte)[], const(ubyte)[])) hgetAll(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
hgetAll
Response!(Map!(string, string)) hgetAll(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
hincrBy
Response!(Long) hincrBy(const(ubyte)[] key, const(ubyte)[] field, long value)
Undocumented in source. Be warned that the author may not have intended to support it.
hincrBy
Response!(Long) hincrBy(string key, string field, long value)
Undocumented in source. Be warned that the author may not have intended to support it.
hincrByFloat
Response!(Double) hincrByFloat(const(ubyte)[] key, const(ubyte)[] field, double increment)
Undocumented in source. Be warned that the author may not have intended to support it.
hincrByFloat
Response!(Double) hincrByFloat(string key, string field, double increment)
Undocumented in source. Be warned that the author may not have intended to support it.
hkeys
Response!(Set!(const(ubyte)[])) hkeys(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
hkeys
Response!(Set!(string)) hkeys(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
hlen
Response!(Long) hlen(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
hlen
Response!(Long) hlen(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
hmget
Response!(List!(const(ubyte)[])) hmget(const(ubyte)[] key, const(ubyte)[][] fields)
Undocumented in source. Be warned that the author may not have intended to support it.
hmget
Response!(List!(string)) hmget(string key, string[] fields)
Undocumented in source. Be warned that the author may not have intended to support it.
hmset
Response!(string) hmset(const(ubyte)[] key, Map!(const(ubyte)[], const(ubyte)[]) hash)
Undocumented in source. Be warned that the author may not have intended to support it.
hmset
Response!(string) hmset(string key, Map!(string, string) hash)
Undocumented in source. Be warned that the author may not have intended to support it.
hset
Response!(Long) hset(const(ubyte)[] key, Map!(const(ubyte)[], const(ubyte)[]) hash)
Undocumented in source. Be warned that the author may not have intended to support it.
hset
Response!(Long) hset(string key, Map!(string, string) hash)
Undocumented in source. Be warned that the author may not have intended to support it.
hset
Response!(Long) hset(const(ubyte)[] key, const(ubyte)[] field, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
hset
Response!(Long) hset(string key, string field, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
hsetnx
Response!(Long) hsetnx(const(ubyte)[] key, const(ubyte)[] field, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
hsetnx
Response!(Long) hsetnx(string key, string field, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
hstrlen
Response!(Long) hstrlen(string key, string field)
Undocumented in source. Be warned that the author may not have intended to support it.
hstrlen
Response!(Long) hstrlen(const(ubyte)[] key, const(ubyte)[] field)
Undocumented in source. Be warned that the author may not have intended to support it.
hvals
Response!(List!(const(ubyte)[])) hvals(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
hvals
Response!(List!(string)) hvals(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
incr
Response!(Long) incr(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
incr
Response!(Long) incr(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
incrBy
Response!(Long) incrBy(string key, long increment)
Undocumented in source. Be warned that the author may not have intended to support it.
incrBy
Response!(Long) incrBy(const(ubyte)[] key, long increment)
Undocumented in source. Be warned that the author may not have intended to support it.
incrByFloat
Response!(Double) incrByFloat(const(ubyte)[] key, double increment)
Undocumented in source. Be warned that the author may not have intended to support it.
incrByFloat
Response!(Double) incrByFloat(string key, double increment)
Undocumented in source. Be warned that the author may not have intended to support it.
lindex
Response!(string) lindex(string key, long index)
Undocumented in source. Be warned that the author may not have intended to support it.
lindex
Response!(const(ubyte)[]) lindex(const(ubyte)[] key, long index)
Undocumented in source. Be warned that the author may not have intended to support it.
linsert
Response!(Long) linsert(string key, ListPosition where, string pivot, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
linsert
Response!(Long) linsert(const(ubyte)[] key, ListPosition where, const(ubyte)[] pivot, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
llen
Response!(Long) llen(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
llen
Response!(Long) llen(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
lpop
Response!(string) lpop(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
lpop
Response!(const(ubyte)[]) lpop(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
lpush
Response!(Long) lpush(string key, string[] string)
Undocumented in source. Be warned that the author may not have intended to support it.
lpush
Response!(Long) lpush(const(ubyte)[] key, const(ubyte)[][] string)
Undocumented in source. Be warned that the author may not have intended to support it.
lpushx
Response!(Long) lpushx(string key, string[] string)
Undocumented in source. Be warned that the author may not have intended to support it.
lpushx
Response!(Long) lpushx(const(ubyte)[] key, const(ubyte)[][] bytes)
Undocumented in source. Be warned that the author may not have intended to support it.
lrange
Response!(List!(string)) lrange(string key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
lrange
Response!(List!(const(ubyte)[])) lrange(const(ubyte)[] key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
lrem
Response!(Long) lrem(string key, long count, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
lrem
Response!(Long) lrem(const(ubyte)[] key, long count, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
lset
Response!(string) lset(string key, long index, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
lset
Response!(string) lset(const(ubyte)[] key, long index, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
ltrim
Response!(string) ltrim(string key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
ltrim
Response!(string) ltrim(const(ubyte)[] key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
migrate
Response!(string) migrate(string host, int port, const(ubyte)[] key, int destinationDb, int timeout)
Undocumented in source. Be warned that the author may not have intended to support it.
migrate
Response!(string) migrate(string host, int port, string key, int destinationDb, int timeout)
Undocumented in source. Be warned that the author may not have intended to support it.
move
Response!(Long) move(string key, int dbIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
move
Response!(Long) move(const(ubyte)[] key, int dbIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
objectEncoding
Response!(const(ubyte)[]) objectEncoding(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
objectEncoding
Response!(string) objectEncoding(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
objectIdletime
Response!(Long) objectIdletime(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
objectIdletime
Response!(Long) objectIdletime(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
objectRefcount
Response!(Long) objectRefcount(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
objectRefcount
Response!(Long) objectRefcount(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
persist
Response!(Long) persist(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
persist
Response!(Long) persist(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
pexpire
Response!(Long) pexpire(const(ubyte)[] key, long milliseconds)
Undocumented in source. Be warned that the author may not have intended to support it.
pexpire
Response!(Long) pexpire(string key, long milliseconds)
Undocumented in source. Be warned that the author may not have intended to support it.
pexpireAt
Response!(Long) pexpireAt(const(ubyte)[] key, long millisecondsTimestamp)
Undocumented in source. Be warned that the author may not have intended to support it.
pexpireAt
Response!(Long) pexpireAt(string key, long millisecondsTimestamp)
Undocumented in source. Be warned that the author may not have intended to support it.
pfadd
Response!(Long) pfadd(string key, string[] elements)
Undocumented in source. Be warned that the author may not have intended to support it.
pfadd
Response!(Long) pfadd(const(ubyte)[] key, const(ubyte)[][] elements)
Undocumented in source. Be warned that the author may not have intended to support it.
pfcount
Response!(Long) pfcount(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
pfcount
Response!(Long) pfcount(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
psetex
Response!(string) psetex(const(ubyte)[] key, long milliseconds, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
psetex
Response!(string) psetex(string key, long milliseconds, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
pttl
Response!(Long) pttl(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
pttl
Response!(Long) pttl(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
restore
Response!(string) restore(const(ubyte)[] key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source. Be warned that the author may not have intended to support it.
restore
Response!(string) restore(string key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source. Be warned that the author may not have intended to support it.
restoreReplace
Response!(string) restoreReplace(const(ubyte)[] key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source. Be warned that the author may not have intended to support it.
restoreReplace
Response!(string) restoreReplace(string key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source. Be warned that the author may not have intended to support it.
rpop
Response!(string) rpop(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
rpop
Response!(const(ubyte)[]) rpop(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
rpush
Response!(Long) rpush(string key, string[] string)
Undocumented in source. Be warned that the author may not have intended to support it.
rpush
Response!(Long) rpush(const(ubyte)[] key, const(ubyte)[][] string)
Undocumented in source. Be warned that the author may not have intended to support it.
rpushx
Response!(Long) rpushx(string key, string[] string)
Undocumented in source. Be warned that the author may not have intended to support it.
rpushx
Response!(Long) rpushx(const(ubyte)[] key, const(ubyte)[][] string)
Undocumented in source. Be warned that the author may not have intended to support it.
sadd
Response!(Long) sadd(string key, string[] member)
Undocumented in source. Be warned that the author may not have intended to support it.
sadd
Response!(Long) sadd(const(ubyte)[] key, const(ubyte)[][] member)
Undocumented in source. Be warned that the author may not have intended to support it.
scard
Response!(Long) scard(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
scard
Response!(Long) scard(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
sendCommand
Response!(Object) sendCommand(ProtocolCommand cmd, string[] args)
Undocumented in source. Be warned that the author may not have intended to support it.
sendCommand
Response!(Object) sendCommand(ProtocolCommand cmd, const(ubyte)[][] args)
Undocumented in source. Be warned that the author may not have intended to support it.
set
Response!(string) set(string key, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
set
Response!(string) set(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
set
Response!(string) set(string key, string value, SetParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
set
Response!(string) set(const(ubyte)[] key, const(ubyte)[] value, SetParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
setbit
Response!(Boolean) setbit(string key, long offset, bool value)
Undocumented in source. Be warned that the author may not have intended to support it.
setbit
Response!(Boolean) setbit(const(ubyte)[] key, long offset, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
setex
Response!(string) setex(string key, int seconds, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
setex
Response!(string) setex(const(ubyte)[] key, int seconds, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
setnx
Response!(Long) setnx(string key, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
setnx
Response!(Long) setnx(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
setrange
Response!(Long) setrange(string key, long offset, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
setrange
Response!(Long) setrange(const(ubyte)[] key, long offset, const(ubyte)[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
sismember
Response!(Boolean) sismember(string key, string member)
Undocumented in source. Be warned that the author may not have intended to support it.
sismember
Response!(Boolean) sismember(const(ubyte)[] key, const(ubyte)[] member)
Undocumented in source. Be warned that the author may not have intended to support it.
smembers
Response!(Set!(string)) smembers(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
smembers
Response!(Set!(const(ubyte)[])) smembers(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
sort
Response!(List!(string)) sort(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
sort
Response!(List!(const(ubyte)[])) sort(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
sort
Response!(List!(string)) sort(string key, SortingParams sortingParameters)
Undocumented in source. Be warned that the author may not have intended to support it.
sort
Response!(List!(const(ubyte)[])) sort(const(ubyte)[] key, SortingParams sortingParameters)
Undocumented in source. Be warned that the author may not have intended to support it.
spop
Response!(string) spop(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
spop
Response!(Set!(string)) spop(string key, long count)
Undocumented in source. Be warned that the author may not have intended to support it.
spop
Response!(const(ubyte)[]) spop(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
spop
Response!(Set!(const(ubyte)[])) spop(const(ubyte)[] key, long count)
Undocumented in source. Be warned that the author may not have intended to support it.
srandmember
Response!(string) srandmember(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
srandmember
Response!(List!(string)) srandmember(string key, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
srandmember
Response!(const(ubyte)[]) srandmember(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
srandmember
Response!(List!(const(ubyte)[])) srandmember(const(ubyte)[] key, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
srem
Response!(Long) srem(const(ubyte)[] key, const(ubyte)[][] member)
Undocumented in source. Be warned that the author may not have intended to support it.
srem
Response!(Long) srem(string key, string[] member)
Undocumented in source. Be warned that the author may not have intended to support it.
strlen
Response!(Long) strlen(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
strlen
Response!(Long) strlen(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
substr
Response!(string) substr(const(ubyte)[] key, int start, int end)
Undocumented in source. Be warned that the author may not have intended to support it.
substr
Response!(string) substr(string key, int start, int end)
Undocumented in source. Be warned that the author may not have intended to support it.
touch
Response!(Long) touch(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
touch
Response!(Long) touch(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
ttl
Response!(Long) ttl(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
ttl
Response!(Long) ttl(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
type
Response!(string) type(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
type
Response!(string) type(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
unlink
Response!(Long) unlink(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
unlink
Response!(Long) unlink(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
xack
Response!(Long) xack(const(ubyte)[] key, const(ubyte)[] group, const(ubyte)[][] ids)
Undocumented in source. Be warned that the author may not have intended to support it.
xack
Response!(Long) xack(string key, string group, StreamEntryID[] ids)
Undocumented in source. Be warned that the author may not have intended to support it.
xadd
Response!(const(ubyte)[]) xadd(const(ubyte)[] key, const(ubyte)[] id, Map!(const(ubyte)[], const(ubyte)[]) hash, long maxLen, bool approximateLength)
Undocumented in source. Be warned that the author may not have intended to support it.
xadd
Response!(StreamEntryID) xadd(string key, StreamEntryID id, Map!(string, string) hash, long maxLen, bool approximateLength)
Undocumented in source. Be warned that the author may not have intended to support it.
xadd
Response!(const(ubyte)[]) xadd(const(ubyte)[] key, const(ubyte)[] id, Map!(const(ubyte)[], const(ubyte)[]) hash)
Undocumented in source. Be warned that the author may not have intended to support it.
xadd
Response!(StreamEntryID) xadd(string key, StreamEntryID id, Map!(string, string) hash)
Undocumented in source. Be warned that the author may not have intended to support it.
xclaim
Response!(List!(const(ubyte)[])) xclaim(const(ubyte)[] key, const(ubyte)[] group, const(ubyte)[] consumername, long minIdleTime, long newIdleTime, int retries, bool force, const(ubyte)[][] ids)
Undocumented in source. Be warned that the author may not have intended to support it.
xclaim
Response!(List!(StreamEntry)) xclaim(string key, string group, string consumername, long minIdleTime, long newIdleTime, int retries, bool force, StreamEntryID[] ids)
Undocumented in source. Be warned that the author may not have intended to support it.
xdel
Response!(Long) xdel(const(ubyte)[] key, const(ubyte)[][] ids)
Undocumented in source. Be warned that the author may not have intended to support it.
xdel
Response!(Long) xdel(string key, StreamEntryID[] ids)
Undocumented in source. Be warned that the author may not have intended to support it.
xgroupCreate
Response!(string) xgroupCreate(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] id, bool makeStream)
Undocumented in source. Be warned that the author may not have intended to support it.
xgroupCreate
Response!(string) xgroupCreate(string key, string groupname, StreamEntryID id, bool makeStream)
Undocumented in source. Be warned that the author may not have intended to support it.
xgroupDelConsumer
Response!(string) xgroupDelConsumer(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] consumername)
Undocumented in source. Be warned that the author may not have intended to support it.
xgroupDelConsumer
Response!(string) xgroupDelConsumer(string key, string groupname, string consumername)
Undocumented in source. Be warned that the author may not have intended to support it.
xgroupDestroy
Response!(Long) xgroupDestroy(const(ubyte)[] key, const(ubyte)[] groupname)
Undocumented in source. Be warned that the author may not have intended to support it.
xgroupDestroy
Response!(Long) xgroupDestroy(string key, string groupname)
Undocumented in source. Be warned that the author may not have intended to support it.
xgroupSetID
Response!(string) xgroupSetID(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] id)
Undocumented in source. Be warned that the author may not have intended to support it.
xgroupSetID
Response!(string) xgroupSetID(string key, string groupname, StreamEntryID id)
Undocumented in source. Be warned that the author may not have intended to support it.
xlen
Response!(Long) xlen(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
xlen
Response!(Long) xlen(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
xpending
Response!(List!(StreamPendingEntry)) xpending(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] start, const(ubyte)[] end, int count, const(ubyte)[] consumername)
Undocumented in source. Be warned that the author may not have intended to support it.
xpending
Response!(List!(StreamPendingEntry)) xpending(string key, string groupname, StreamEntryID start, StreamEntryID end, int count, string consumername)
Undocumented in source. Be warned that the author may not have intended to support it.
xrange
Response!(List!(const(ubyte)[])) xrange(const(ubyte)[] key, const(ubyte)[] start, const(ubyte)[] end, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
xrange
Response!(List!(StreamEntry)) xrange(string key, StreamEntryID start, StreamEntryID end, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
xrevrange
Response!(List!(const(ubyte)[])) xrevrange(const(ubyte)[] key, const(ubyte)[] end, const(ubyte)[] start, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
xrevrange
Response!(List!(StreamEntry)) xrevrange(string key, StreamEntryID end, StreamEntryID start, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
xtrim
Response!(Long) xtrim(const(ubyte)[] key, long maxLen, bool approximateLength)
Undocumented in source. Be warned that the author may not have intended to support it.
xtrim
Response!(Long) xtrim(string key, long maxLen, bool approximateLength)
Undocumented in source. Be warned that the author may not have intended to support it.
zadd
Response!(Long) zadd(const(ubyte)[] key, double score, const(ubyte)[] member, ZAddParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
zadd
Response!(Long) zadd(const(ubyte)[] key, Map!(const(ubyte)[], double) scoreMembers, ZAddParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
zadd
Response!(Long) zadd(const(ubyte)[] key, Map!(const(ubyte)[], double) scoreMembers)
Undocumented in source. Be warned that the author may not have intended to support it.
zadd
Response!(Long) zadd(const(ubyte)[] key, double score, const(ubyte)[] member)
Undocumented in source. Be warned that the author may not have intended to support it.
zadd
Response!(Long) zadd(string key, Map!(string, double) scoreMembers, ZAddParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
zadd
Response!(Long) zadd(string key, Map!(string, double) scoreMembers)
Undocumented in source. Be warned that the author may not have intended to support it.
zadd
Response!(Long) zadd(string key, double score, string member, ZAddParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
zadd
Response!(Long) zadd(string key, double score, string member)
Undocumented in source. Be warned that the author may not have intended to support it.
zcard
Response!(Long) zcard(const(ubyte)[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
zcard
Response!(Long) zcard(string key)
Undocumented in source. Be warned that the author may not have intended to support it.
zcount
Response!(Long) zcount(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source. Be warned that the author may not have intended to support it.
zcount
Response!(Long) zcount(const(ubyte)[] key, double min, double max)
Undocumented in source. Be warned that the author may not have intended to support it.
zcount
Response!(Long) zcount(string key, string min, string max)
Undocumented in source. Be warned that the author may not have intended to support it.
zcount
Response!(Long) zcount(string key, double min, double max)
Undocumented in source. Be warned that the author may not have intended to support it.
zincrby
Response!(Double) zincrby(const(ubyte)[] key, double increment, const(ubyte)[] member, ZIncrByParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
zincrby
Response!(Double) zincrby(const(ubyte)[] key, double increment, const(ubyte)[] member)
Undocumented in source. Be warned that the author may not have intended to support it.
zincrby
Response!(Double) zincrby(string key, double increment, string member, ZIncrByParams params)
Undocumented in source. Be warned that the author may not have intended to support it.
zincrby
Response!(Double) zincrby(string key, double increment, string member)
Undocumented in source. Be warned that the author may not have intended to support it.
zlexcount
Response!(Long) zlexcount(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source. Be warned that the author may not have intended to support it.
zlexcount
Response!(Long) zlexcount(string key, string min, string max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrange
Response!(Set!(const(ubyte)[])) zrange(const(ubyte)[] key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zrange
Response!(Set!(string)) zrange(string key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByLex
Response!(Set!(const(ubyte)[])) zrangeByLex(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByLex
Response!(Set!(string)) zrangeByLex(string key, string min, string max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByLex
Response!(Set!(const(ubyte)[])) zrangeByLex(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByLex
Response!(Set!(string)) zrangeByLex(string key, string min, string max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, double min, double max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScore
Response!(Set!(string)) zrangeByScore(string key, double min, double max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, double min, double max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScore
Response!(Set!(string)) zrangeByScore(string key, string min, string max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScore
Response!(Set!(string)) zrangeByScore(string key, double min, double max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScore
Response!(Set!(string)) zrangeByScore(string key, string min, string max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(const(ubyte)[] key, double min, double max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(string key, string min, string max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(string key, double min, double max, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(const(ubyte)[] key, double min, double max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(string key, string min, string max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(string key, double min, double max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeWithScores
Response!(Set!(Tuple)) zrangeWithScores(const(ubyte)[] key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zrangeWithScores
Response!(Set!(Tuple)) zrangeWithScores(string key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zrank
Response!(Long) zrank(const(ubyte)[] key, const(ubyte)[] member)
Undocumented in source. Be warned that the author may not have intended to support it.
zrank
Response!(Long) zrank(string key, string member)
Undocumented in source. Be warned that the author may not have intended to support it.
zrem
Response!(Long) zrem(const(ubyte)[] key, const(ubyte)[][] members)
Undocumented in source. Be warned that the author may not have intended to support it.
zrem
Response!(Long) zrem(string key, string[] members)
Undocumented in source. Be warned that the author may not have intended to support it.
zremrangeByLex
Response!(Long) zremrangeByLex(string key, string min, string max)
Undocumented in source. Be warned that the author may not have intended to support it.
zremrangeByLex
Response!(Long) zremrangeByLex(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source. Be warned that the author may not have intended to support it.
zremrangeByRank
Response!(Long) zremrangeByRank(const(ubyte)[] key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zremrangeByRank
Response!(Long) zremrangeByRank(string key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zremrangeByScore
Response!(Long) zremrangeByScore(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source. Be warned that the author may not have intended to support it.
zremrangeByScore
Response!(Long) zremrangeByScore(const(ubyte)[] key, double min, double max)
Undocumented in source. Be warned that the author may not have intended to support it.
zremrangeByScore
Response!(Long) zremrangeByScore(string key, string min, string max)
Undocumented in source. Be warned that the author may not have intended to support it.
zremrangeByScore
Response!(Long) zremrangeByScore(string key, double min, double max)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrange
Response!(Set!(const(ubyte)[])) zrevrange(const(ubyte)[] key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrange
Response!(Set!(string)) zrevrange(string key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByLex
Response!(Set!(string)) zrevrangeByLex(string key, string max, string min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByLex
Response!(Set!(const(ubyte)[])) zrevrangeByLex(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByLex
Response!(Set!(string)) zrevrangeByLex(string key, string max, string min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByLex
Response!(Set!(const(ubyte)[])) zrevrangeByLex(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScore
Response!(Set!(const(ubyte)[])) zrevrangeByScore(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScore
Response!(Set!(const(ubyte)[])) zrevrangeByScore(const(ubyte)[] key, double max, double min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScore
Response!(Set!(string)) zrevrangeByScore(string key, string max, string min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScore
Response!(Set!(string)) zrevrangeByScore(string key, double max, double min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScore
Response!(Set!(const(ubyte)[])) zrevrangeByScore(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScore
Response!(Set!(string)) zrevrangeByScore(string key, string max, string min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScore
Response!(Set!(const(ubyte)[])) zrevrangeByScore(const(ubyte)[] key, double max, double min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScore
Response!(Set!(string)) zrevrangeByScore(string key, double max, double min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(const(ubyte)[] key, double max, double min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(string key, string max, string min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(string key, double max, double min, int offset, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(const(ubyte)[] key, double max, double min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(string key, string max, string min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(string key, double max, double min)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeWithScores
Response!(Set!(Tuple)) zrevrangeWithScores(const(ubyte)[] key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrangeWithScores
Response!(Set!(Tuple)) zrevrangeWithScores(string key, long start, long stop)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrank
Response!(Long) zrevrank(const(ubyte)[] key, const(ubyte)[] member)
Undocumented in source. Be warned that the author may not have intended to support it.
zrevrank
Response!(Long) zrevrank(string key, string member)
Undocumented in source. Be warned that the author may not have intended to support it.
zscore
Response!(Double) zscore(const(ubyte)[] key, const(ubyte)[] member)
Undocumented in source. Be warned that the author may not have intended to support it.
zscore
Response!(Double) zscore(string key, string member)
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From Queable

clean
void clean()
Undocumented in source. Be warned that the author may not have intended to support it.
generateResponse
AbstractResponse generateResponse(Object data)
Undocumented in source. Be warned that the author may not have intended to support it.
getResponse
Response!(T) getResponse(Builder!(T) builder)
Undocumented in source. Be warned that the author may not have intended to support it.
hasPipelinedResponse
bool hasPipelinedResponse()
Undocumented in source. Be warned that the author may not have intended to support it.
getPipelinedResponseLength
int getPipelinedResponseLength()
Undocumented in source. Be warned that the author may not have intended to support it.

From BinaryRedisPipeline

append
Response!(Long) append(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source.
blpop
Response!(List!(const(ubyte)[])) blpop(const(ubyte)[] arg)
Undocumented in source.
brpop
Response!(List!(const(ubyte)[])) brpop(const(ubyte)[] arg)
Undocumented in source.
decr
Response!(Long) decr(const(ubyte)[] key)
Undocumented in source.
decrBy
Response!(Long) decrBy(const(ubyte)[] key, long decrement)
Undocumented in source.
del
Response!(Long) del(const(ubyte)[] keys)
Undocumented in source.
unlink
Response!(Long) unlink(const(ubyte)[] keys)
Undocumented in source.
echo
Response!(const(ubyte)[]) echo(const(ubyte)[] string)
Undocumented in source.
exists
Response!(Boolean) exists(const(ubyte)[] key)
Undocumented in source.
expire
Response!(Long) expire(const(ubyte)[] key, int seconds)
Undocumented in source.
pexpire
Response!(Long) pexpire(const(ubyte)[] key, long milliseconds)
Undocumented in source.
expireAt
Response!(Long) expireAt(const(ubyte)[] key, long unixTime)
Undocumented in source.
pexpireAt
Response!(Long) pexpireAt(const(ubyte)[] key, long millisecondsTimestamp)
Undocumented in source.
get
Response!(const(ubyte)[]) get(const(ubyte)[] key)
Undocumented in source.
getbit
Response!(Boolean) getbit(const(ubyte)[] key, long offset)
Undocumented in source.
getSet
Response!(const(ubyte)[]) getSet(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source.
getrange
Response!(const(ubyte)[]) getrange(const(ubyte)[] key, long startOffset, long endOffset)
Undocumented in source.
hdel
Response!(Long) hdel(const(ubyte)[] key, const(ubyte)[][] field)
Undocumented in source.
hexists
Response!(Boolean) hexists(const(ubyte)[] key, const(ubyte)[] field)
Undocumented in source.
hget
Response!(const(ubyte)[]) hget(const(ubyte)[] key, const(ubyte)[] field)
Undocumented in source.
hgetAll
Response!(Map!(const(ubyte)[], const(ubyte)[])) hgetAll(const(ubyte)[] key)
Undocumented in source.
hincrBy
Response!(Long) hincrBy(const(ubyte)[] key, const(ubyte)[] field, long value)
Undocumented in source.
hkeys
Response!(Set!(const(ubyte)[])) hkeys(const(ubyte)[] key)
Undocumented in source.
hlen
Response!(Long) hlen(const(ubyte)[] key)
Undocumented in source.
hmget
Response!(List!(const(ubyte)[])) hmget(const(ubyte)[] key, const(ubyte)[][] fields)
Undocumented in source.
hmset
Response!(string) hmset(const(ubyte)[] key, Map!(const(ubyte)[], const(ubyte)[]) hash)
Undocumented in source.
hset
Response!(Long) hset(const(ubyte)[] key, const(ubyte)[] field, const(ubyte)[] value)
Undocumented in source.
hset
Response!(Long) hset(const(ubyte)[] key, Map!(const(ubyte)[], const(ubyte)[]) hash)
Undocumented in source.
hsetnx
Response!(Long) hsetnx(const(ubyte)[] key, const(ubyte)[] field, const(ubyte)[] value)
Undocumented in source.
hvals
Response!(List!(const(ubyte)[])) hvals(const(ubyte)[] key)
Undocumented in source.
incr
Response!(Long) incr(const(ubyte)[] key)
Undocumented in source.
incrBy
Response!(Long) incrBy(const(ubyte)[] key, long increment)
Undocumented in source.
lindex
Response!(const(ubyte)[]) lindex(const(ubyte)[] key, long index)
Undocumented in source.
linsert
Response!(Long) linsert(const(ubyte)[] key, ListPosition where, const(ubyte)[] pivot, const(ubyte)[] value)
Undocumented in source.
llen
Response!(Long) llen(const(ubyte)[] key)
Undocumented in source.
lpop
Response!(const(ubyte)[]) lpop(const(ubyte)[] key)
Undocumented in source.
lpush
Response!(Long) lpush(const(ubyte)[] key, const(ubyte)[][] string)
Undocumented in source.
lpushx
Response!(Long) lpushx(const(ubyte)[] key, const(ubyte)[][] bytes)
Undocumented in source.
lrange
Response!(List!(const(ubyte)[])) lrange(const(ubyte)[] key, long start, long stop)
Undocumented in source.
lrem
Response!(Long) lrem(const(ubyte)[] key, long count, const(ubyte)[] value)
Undocumented in source.
lset
Response!(string) lset(const(ubyte)[] key, long index, const(ubyte)[] value)
Undocumented in source.
ltrim
Response!(string) ltrim(const(ubyte)[] key, long start, long stop)
Undocumented in source.
move
Response!(Long) move(const(ubyte)[] key, int dbIndex)
Undocumented in source.
persist
Response!(Long) persist(const(ubyte)[] key)
Undocumented in source.
rpop
Response!(const(ubyte)[]) rpop(const(ubyte)[] key)
Undocumented in source.
rpush
Response!(Long) rpush(const(ubyte)[] key, const(ubyte)[][] string)
Undocumented in source.
rpushx
Response!(Long) rpushx(const(ubyte)[] key, const(ubyte)[][] string)
Undocumented in source.
sadd
Response!(Long) sadd(const(ubyte)[] key, const(ubyte)[][] member)
Undocumented in source.
scard
Response!(Long) scard(const(ubyte)[] key)
Undocumented in source.
set
Response!(string) set(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source.
setbit
Response!(Boolean) setbit(const(ubyte)[] key, long offset, const(ubyte)[] value)
Undocumented in source.
setrange
Response!(Long) setrange(const(ubyte)[] key, long offset, const(ubyte)[] value)
Undocumented in source.
setex
Response!(string) setex(const(ubyte)[] key, int seconds, const(ubyte)[] value)
Undocumented in source.
setnx
Response!(Long) setnx(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source.
setrange
Response!(Long) setrange(string key, long offset, string value)
Undocumented in source.
smembers
Response!(Set!(const(ubyte)[])) smembers(const(ubyte)[] key)
Undocumented in source.
sismember
Response!(Boolean) sismember(const(ubyte)[] key, const(ubyte)[] member)
Undocumented in source.
sort
Response!(List!(const(ubyte)[])) sort(const(ubyte)[] key)
Undocumented in source.
sort
Response!(List!(const(ubyte)[])) sort(const(ubyte)[] key, SortingParams sortingParameters)
Undocumented in source.
spop
Response!(const(ubyte)[]) spop(const(ubyte)[] key)
Undocumented in source.
spop
Response!(Set!(const(ubyte)[])) spop(const(ubyte)[] key, long count)
Undocumented in source.
srandmember
Response!(const(ubyte)[]) srandmember(const(ubyte)[] key)
Undocumented in source.
srem
Response!(Long) srem(const(ubyte)[] key, const(ubyte)[][] member)
Undocumented in source.
strlen
Response!(Long) strlen(const(ubyte)[] key)
Undocumented in source.
substr
Response!(string) substr(const(ubyte)[] key, int start, int end)
Undocumented in source.
touch
Response!(Long) touch(const(ubyte)[] keys)
Undocumented in source.
ttl
Response!(Long) ttl(const(ubyte)[] key)
Undocumented in source.
pttl
Response!(Long) pttl(const(ubyte)[] key)
Undocumented in source.
type
Response!(string) type(const(ubyte)[] key)
Undocumented in source.
zadd
Response!(Long) zadd(const(ubyte)[] key, double score, const(ubyte)[] member)
Undocumented in source.
zadd
Response!(Long) zadd(const(ubyte)[] key, double score, const(ubyte)[] member, ZAddParams params)
Undocumented in source.
zadd
Response!(Long) zadd(const(ubyte)[] key, Map!(const(ubyte)[], double) scoreMembers)
Undocumented in source.
zadd
Response!(Long) zadd(const(ubyte)[] key, Map!(const(ubyte)[], double) scoreMembers, ZAddParams params)
Undocumented in source.
zcard
Response!(Long) zcard(const(ubyte)[] key)
Undocumented in source.
zcount
Response!(Long) zcount(const(ubyte)[] key, double min, double max)
Undocumented in source.
zcount
Response!(Long) zcount(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source.
zincrby
Response!(Double) zincrby(const(ubyte)[] key, double increment, const(ubyte)[] member)
Undocumented in source.
zincrby
Response!(Double) zincrby(const(ubyte)[] key, double increment, const(ubyte)[] member, ZIncrByParams params)
Undocumented in source.
zrange
Response!(Set!(const(ubyte)[])) zrange(const(ubyte)[] key, long start, long stop)
Undocumented in source.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, double min, double max)
Undocumented in source.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, double min, double max, int offset, int count)
Undocumented in source.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max, int offset, int count)
Undocumented in source.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(const(ubyte)[] key, double min, double max)
Undocumented in source.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(const(ubyte)[] key, double min, double max, int offset, int count)
Undocumented in source.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max, int offset, int count)
Undocumented in source.
zrevrangeByScore
Response!(Set!(const(ubyte)[])) zrevrangeByScore(const(ubyte)[] key, double max, double min)
Undocumented in source.
zrevrangeByScore
Response!(Set!(const(ubyte)[])) zrevrangeByScore(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min)
Undocumented in source.
zrevrangeByScore
Response!(Set!(const(ubyte)[])) zrevrangeByScore(const(ubyte)[] key, double max, double min, int offset, int count)
Undocumented in source.
zrevrangeByScore
Response!(Set!(const(ubyte)[])) zrevrangeByScore(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min, int offset, int count)
Undocumented in source.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(const(ubyte)[] key, double max, double min)
Undocumented in source.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min)
Undocumented in source.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(const(ubyte)[] key, double max, double min, int offset, int count)
Undocumented in source.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min, int offset, int count)
Undocumented in source.
zrangeWithScores
Response!(Set!(Tuple)) zrangeWithScores(const(ubyte)[] key, long start, long stop)
Undocumented in source.
zrank
Response!(Long) zrank(const(ubyte)[] key, const(ubyte)[] member)
Undocumented in source.
zrem
Response!(Long) zrem(const(ubyte)[] key, const(ubyte)[][] members)
Undocumented in source.
zremrangeByRank
Response!(Long) zremrangeByRank(const(ubyte)[] key, long start, long stop)
Undocumented in source.
zremrangeByScore
Response!(Long) zremrangeByScore(const(ubyte)[] key, double min, double max)
Undocumented in source.
zremrangeByScore
Response!(Long) zremrangeByScore(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source.
zrevrange
Response!(Set!(const(ubyte)[])) zrevrange(const(ubyte)[] key, long start, long stop)
Undocumented in source.
zrevrangeWithScores
Response!(Set!(Tuple)) zrevrangeWithScores(const(ubyte)[] key, long start, long stop)
Undocumented in source.
zrevrank
Response!(Long) zrevrank(const(ubyte)[] key, const(ubyte)[] member)
Undocumented in source.
zscore
Response!(Double) zscore(const(ubyte)[] key, const(ubyte)[] member)
Undocumented in source.
zlexcount
Response!(Long) zlexcount(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source.
zrangeByLex
Response!(Set!(const(ubyte)[])) zrangeByLex(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source.
zrangeByLex
Response!(Set!(const(ubyte)[])) zrangeByLex(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max, int offset, int count)
Undocumented in source.
zrevrangeByLex
Response!(Set!(const(ubyte)[])) zrevrangeByLex(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min)
Undocumented in source.
zrevrangeByLex
Response!(Set!(const(ubyte)[])) zrevrangeByLex(const(ubyte)[] key, const(ubyte)[] max, const(ubyte)[] min, int offset, int count)
Undocumented in source.
zremrangeByLex
Response!(Long) zremrangeByLex(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source.
bitcount
Response!(Long) bitcount(const(ubyte)[] key)
Undocumented in source.
bitcount
Response!(Long) bitcount(const(ubyte)[] key, long start, long end)
Undocumented in source.
pfadd
Response!(Long) pfadd(const(ubyte)[] key, const(ubyte)[][] elements)
Undocumented in source.
pfcount
Response!(Long) pfcount(const(ubyte)[] key)
Undocumented in source.
dump
Response!(const(ubyte)[]) dump(const(ubyte)[] key)
Undocumented in source.
restore
Response!(string) restore(const(ubyte)[] key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source.
restoreReplace
Response!(string) restoreReplace(const(ubyte)[] key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source.
migrate
Response!(string) migrate(string host, int port, const(ubyte)[] key, int destinationDB, int timeout)
Undocumented in source.
geoadd
Response!(Long) geoadd(const(ubyte)[] key, double longitude, double latitude, const(ubyte)[] member)
Undocumented in source.
geoadd
Response!(Long) geoadd(const(ubyte)[] key, Map!(const(ubyte)[], GeoCoordinate) memberCoordinateMap)
Undocumented in source.
geodist
Response!(Double) geodist(const(ubyte)[] key, const(ubyte)[] member1, const(ubyte)[] member2)
Undocumented in source.
geodist
Response!(Double) geodist(const(ubyte)[] key, const(ubyte)[] member1, const(ubyte)[] member2, GeoUnit unit)
Undocumented in source.
geohash
Response!(List!(const(ubyte)[])) geohash(const(ubyte)[] key, const(ubyte)[][] members)
Undocumented in source.
geopos
Response!(List!(GeoCoordinate)) geopos(const(ubyte)[] key, const(ubyte)[][] members)
Undocumented in source.
georadius
Response!(List!(GeoRadiusResponse)) georadius(const(ubyte)[] key, double longitude, double latitude, double radius, GeoUnit unit)
Undocumented in source.
georadiusReadonly
Response!(List!(GeoRadiusResponse)) georadiusReadonly(const(ubyte)[] key, double longitude, double latitude, double radius, GeoUnit unit)
Undocumented in source.
georadius
Response!(List!(GeoRadiusResponse)) georadius(const(ubyte)[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source.
georadiusReadonly
Response!(List!(GeoRadiusResponse)) georadiusReadonly(const(ubyte)[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source.
georadiusByMember
Response!(List!(GeoRadiusResponse)) georadiusByMember(const(ubyte)[] key, const(ubyte)[] member, double radius, GeoUnit unit)
Undocumented in source.
georadiusByMemberReadonly
Response!(List!(GeoRadiusResponse)) georadiusByMemberReadonly(const(ubyte)[] key, const(ubyte)[] member, double radius, GeoUnit unit)
Undocumented in source.
georadiusByMember
Response!(List!(GeoRadiusResponse)) georadiusByMember(const(ubyte)[] key, const(ubyte)[] member, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source.
georadiusByMemberReadonly
Response!(List!(GeoRadiusResponse)) georadiusByMemberReadonly(const(ubyte)[] key, const(ubyte)[] member, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source.
bitfield
Response!(List!(Long)) bitfield(const(ubyte)[] key, const(ubyte)[][] elements)
Undocumented in source.
hstrlen
Response!(Long) hstrlen(const(ubyte)[] key, const(ubyte)[] field)
Undocumented in source.
xadd
Response!(const(ubyte)[]) xadd(const(ubyte)[] key, const(ubyte)[] id, Map!(const(ubyte)[], const(ubyte)[]) hash)
Undocumented in source.
xadd
Response!(const(ubyte)[]) xadd(const(ubyte)[] key, const(ubyte)[] id, Map!(const(ubyte)[], const(ubyte)[]) hash, long maxLen, bool approximateLength)
Undocumented in source.
xlen
Response!(Long) xlen(const(ubyte)[] key)
Undocumented in source.
xrange
Response!(List!(const(ubyte)[])) xrange(const(ubyte)[] key, const(ubyte)[] start, const(ubyte)[] end, int count)
Undocumented in source.
xrevrange
Response!(List!(const(ubyte)[])) xrevrange(const(ubyte)[] key, const(ubyte)[] end, const(ubyte)[] start, int count)
Undocumented in source.
xack
Response!(Long) xack(const(ubyte)[] key, const(ubyte)[] group, const(ubyte)[][] ids)
Undocumented in source.
xgroupCreate
Response!(string) xgroupCreate(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] id, bool makeStream)
Undocumented in source.
xgroupSetID
Response!(string) xgroupSetID(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] id)
Undocumented in source.
xgroupDestroy
Response!(Long) xgroupDestroy(const(ubyte)[] key, const(ubyte)[] groupname)
Undocumented in source.
xgroupDelConsumer
Response!(string) xgroupDelConsumer(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] consumername)
Undocumented in source.
xpending
Response!(List!(StreamPendingEntry)) xpending(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] start, const(ubyte)[] end, int count, const(ubyte)[] consumername)
Undocumented in source.
xdel
Response!(Long) xdel(const(ubyte)[] key, const(ubyte)[][] ids)
Undocumented in source.
xtrim
Response!(Long) xtrim(const(ubyte)[] key, long maxLen, bool approximateLength)
Undocumented in source.
xclaim
Response!(List!(const(ubyte)[])) xclaim(const(ubyte)[] key, const(ubyte)[] group, const(ubyte)[] consumername, long minIdleTime, long newIdleTime, int retries, bool force, const(ubyte)[][] ids)
Undocumented in source.
bitpos
Response!(Long) bitpos(const(ubyte)[] key, bool value)
Undocumented in source.
bitpos
Response!(Long) bitpos(const(ubyte)[] key, bool value, BitPosParams params)
Undocumented in source.
set
Response!(string) set(const(ubyte)[] key, const(ubyte)[] value, SetParams params)
Undocumented in source.
srandmember
Response!(List!(const(ubyte)[])) srandmember(const(ubyte)[] key, int count)
Undocumented in source.
objectRefcount
Response!(Long) objectRefcount(const(ubyte)[] key)
Undocumented in source.
objectEncoding
Response!(const(ubyte)[]) objectEncoding(const(ubyte)[] key)
Undocumented in source.
objectIdletime
Response!(Long) objectIdletime(const(ubyte)[] key)
Undocumented in source.
incrByFloat
Response!(Double) incrByFloat(const(ubyte)[] key, double increment)
Undocumented in source.
psetex
Response!(string) psetex(const(ubyte)[] key, long milliseconds, const(ubyte)[] value)
Undocumented in source.
hincrByFloat
Response!(Double) hincrByFloat(const(ubyte)[] key, const(ubyte)[] field, double increment)
Undocumented in source.
sendCommand
Response!(Object) sendCommand(ProtocolCommand cmd, const(ubyte)[][] args)
Undocumented in source.

From RedisPipeline

append
Response!(Long) append(string key, string value)
Undocumented in source.
blpop
Response!(List!(string)) blpop(string arg)
Undocumented in source.
brpop
Response!(List!(string)) brpop(string arg)
Undocumented in source.
decr
Response!(Long) decr(string key)
Undocumented in source.
decrBy
Response!(Long) decrBy(string key, long decrement)
Undocumented in source.
del
Response!(Long) del(string key)
Undocumented in source.
unlink
Response!(Long) unlink(string key)
Undocumented in source.
echo
Response!(string) echo(string string)
Undocumented in source.
exists
Response!(Boolean) exists(string key)
Undocumented in source.
expire
Response!(Long) expire(string key, int seconds)
Undocumented in source.
pexpire
Response!(Long) pexpire(string key, long milliseconds)
Undocumented in source.
expireAt
Response!(Long) expireAt(string key, long unixTime)
Undocumented in source.
pexpireAt
Response!(Long) pexpireAt(string key, long millisecondsTimestamp)
Undocumented in source.
get
Response!(string) get(string key)
Undocumented in source.
getbit
Response!(Boolean) getbit(string key, long offset)
Undocumented in source.
getrange
Response!(string) getrange(string key, long startOffset, long endOffset)
Undocumented in source.
getSet
Response!(string) getSet(string key, string value)
Undocumented in source.
hdel
Response!(Long) hdel(string key, string[] field)
Undocumented in source.
hexists
Response!(Boolean) hexists(string key, string field)
Undocumented in source.
hget
Response!(string) hget(string key, string field)
Undocumented in source.
hgetAll
Response!(Map!(string, string)) hgetAll(string key)
Undocumented in source.
hincrBy
Response!(Long) hincrBy(string key, string field, long value)
Undocumented in source.
hkeys
Response!(Set!(string)) hkeys(string key)
Undocumented in source.
hlen
Response!(Long) hlen(string key)
Undocumented in source.
hmget
Response!(List!(string)) hmget(string key, string[] fields)
Undocumented in source.
hmset
Response!(string) hmset(string key, Map!(string, string) hash)
Undocumented in source.
hset
Response!(Long) hset(string key, string field, string value)
Undocumented in source.
hset
Response!(Long) hset(string key, Map!(string, string) hash)
Undocumented in source.
hsetnx
Response!(Long) hsetnx(string key, string field, string value)
Undocumented in source.
hvals
Response!(List!(string)) hvals(string key)
Undocumented in source.
incr
Response!(Long) incr(string key)
Undocumented in source.
incrBy
Response!(Long) incrBy(string key, long increment)
Undocumented in source.
lindex
Response!(string) lindex(string key, long index)
Undocumented in source.
linsert
Response!(Long) linsert(string key, ListPosition where, string pivot, string value)
Undocumented in source.
llen
Response!(Long) llen(string key)
Undocumented in source.
lpop
Response!(string) lpop(string key)
Undocumented in source.
lpush
Response!(Long) lpush(string key, string[] string)
Undocumented in source.
lpushx
Response!(Long) lpushx(string key, string[] string)
Undocumented in source.
lrange
Response!(List!(string)) lrange(string key, long start, long stop)
Undocumented in source.
lrem
Response!(Long) lrem(string key, long count, string value)
Undocumented in source.
lset
Response!(string) lset(string key, long index, string value)
Undocumented in source.
ltrim
Response!(string) ltrim(string key, long start, long stop)
Undocumented in source.
move
Response!(Long) move(string key, int dbIndex)
Undocumented in source.
persist
Response!(Long) persist(string key)
Undocumented in source.
rpop
Response!(string) rpop(string key)
Undocumented in source.
rpush
Response!(Long) rpush(string key, string[] string)
Undocumented in source.
rpushx
Response!(Long) rpushx(string key, string[] string)
Undocumented in source.
sadd
Response!(Long) sadd(string key, string[] member)
Undocumented in source.
scard
Response!(Long) scard(string key)
Undocumented in source.
sismember
Response!(Boolean) sismember(string key, string member)
Undocumented in source.
set
Response!(string) set(string key, string value)
Undocumented in source.
setbit
Response!(Boolean) setbit(string key, long offset, bool value)
Undocumented in source.
setex
Response!(string) setex(string key, int seconds, string value)
Undocumented in source.
setnx
Response!(Long) setnx(string key, string value)
Undocumented in source.
setrange
Response!(Long) setrange(string key, long offset, string value)
Undocumented in source.
smembers
Response!(Set!(string)) smembers(string key)
Undocumented in source.
sort
Response!(List!(string)) sort(string key)
Undocumented in source.
sort
Response!(List!(string)) sort(string key, SortingParams sortingParameters)
Undocumented in source.
spop
Response!(string) spop(string key)
Undocumented in source.
spop
Response!(Set!(string)) spop(string key, long count)
Undocumented in source.
srandmember
Response!(string) srandmember(string key)
Undocumented in source.
srem
Response!(Long) srem(string key, string[] member)
Undocumented in source.
strlen
Response!(Long) strlen(string key)
Undocumented in source.
substr
Response!(string) substr(string key, int start, int end)
Undocumented in source.
touch
Response!(Long) touch(string key)
Undocumented in source.
ttl
Response!(Long) ttl(string key)
Undocumented in source.
pttl
Response!(Long) pttl(string key)
Undocumented in source.
type
Response!(string) type(string key)
Undocumented in source.
zadd
Response!(Long) zadd(string key, double score, string member)
Undocumented in source.
zadd
Response!(Long) zadd(string key, double score, string member, ZAddParams params)
Undocumented in source.
zadd
Response!(Long) zadd(string key, Map!(string, double) scoreMembers)
Undocumented in source.
zadd
Response!(Long) zadd(string key, Map!(string, double) scoreMembers, ZAddParams params)
Undocumented in source.
zcard
Response!(Long) zcard(string key)
Undocumented in source.
zcount
Response!(Long) zcount(string key, double min, double max)
Undocumented in source.
zcount
Response!(Long) zcount(string key, string min, string max)
Undocumented in source.
zincrby
Response!(Double) zincrby(string key, double increment, string member)
Undocumented in source.
zincrby
Response!(Double) zincrby(string key, double increment, string member, ZIncrByParams params)
Undocumented in source.
zrange
Response!(Set!(string)) zrange(string key, long start, long stop)
Undocumented in source.
zrangeByScore
Response!(Set!(string)) zrangeByScore(string key, double min, double max)
Undocumented in source.
zrangeByScore
Response!(Set!(string)) zrangeByScore(string key, string min, string max)
Undocumented in source.
zrangeByScore
Response!(Set!(string)) zrangeByScore(string key, double min, double max, int offset, int count)
Undocumented in source.
zrangeByScore
Response!(Set!(string)) zrangeByScore(string key, string min, string max, int offset, int count)
Undocumented in source.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(string key, double min, double max)
Undocumented in source.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(string key, double min, double max, int offset, int count)
Undocumented in source.
zrevrangeByScore
Response!(Set!(string)) zrevrangeByScore(string key, double max, double min)
Undocumented in source.
zrevrangeByScore
Response!(Set!(string)) zrevrangeByScore(string key, string max, string min)
Undocumented in source.
zrevrangeByScore
Response!(Set!(string)) zrevrangeByScore(string key, double max, double min, int offset, int count)
Undocumented in source.
zrevrangeByScore
Response!(Set!(string)) zrevrangeByScore(string key, string max, string min, int offset, int count)
Undocumented in source.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(string key, double max, double min)
Undocumented in source.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(string key, string max, string min)
Undocumented in source.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(string key, double max, double min, int offset, int count)
Undocumented in source.
zrevrangeByScoreWithScores
Response!(Set!(Tuple)) zrevrangeByScoreWithScores(string key, string max, string min, int offset, int count)
Undocumented in source.
zrangeWithScores
Response!(Set!(Tuple)) zrangeWithScores(string key, long start, long stop)
Undocumented in source.
zrank
Response!(Long) zrank(string key, string member)
Undocumented in source.
zrem
Response!(Long) zrem(string key, string[] members)
Undocumented in source.
zremrangeByRank
Response!(Long) zremrangeByRank(string key, long start, long stop)
Undocumented in source.
zremrangeByScore
Response!(Long) zremrangeByScore(string key, double min, double max)
Undocumented in source.
zremrangeByScore
Response!(Long) zremrangeByScore(string key, string min, string max)
Undocumented in source.
zrevrange
Response!(Set!(string)) zrevrange(string key, long start, long stop)
Undocumented in source.
zrevrangeWithScores
Response!(Set!(Tuple)) zrevrangeWithScores(string key, long start, long stop)
Undocumented in source.
zrevrank
Response!(Long) zrevrank(string key, string member)
Undocumented in source.
zscore
Response!(Double) zscore(string key, string member)
Undocumented in source.
zlexcount
Response!(Long) zlexcount(string key, string min, string max)
Undocumented in source.
zrangeByLex
Response!(Set!(string)) zrangeByLex(string key, string min, string max)
Undocumented in source.
zrangeByLex
Response!(Set!(string)) zrangeByLex(string key, string min, string max, int offset, int count)
Undocumented in source.
zrevrangeByLex
Response!(Set!(string)) zrevrangeByLex(string key, string max, string min)
Undocumented in source.
zrevrangeByLex
Response!(Set!(string)) zrevrangeByLex(string key, string max, string min, int offset, int count)
Undocumented in source.
zremrangeByLex
Response!(Long) zremrangeByLex(string key, string min, string max)
Undocumented in source.
bitcount
Response!(Long) bitcount(string key)
Undocumented in source.
bitcount
Response!(Long) bitcount(string key, long start, long end)
Undocumented in source.
pfadd
Response!(Long) pfadd(string key, string[] elements)
Undocumented in source.
pfcount
Response!(Long) pfcount(string key)
Undocumented in source.
bitfield
Response!(List!(Long)) bitfield(string key, string[] arguments)
Undocumented in source.
hstrlen
Response!(Long) hstrlen(string key, string field)
Undocumented in source.
dump
Response!(const(ubyte)[]) dump(string key)
Undocumented in source.
restore
Response!(string) restore(string key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source.
restoreReplace
Response!(string) restoreReplace(string key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source.
migrate
Response!(string) migrate(string host, int port, string key, int destinationDB, int timeout)
Undocumented in source.
geoadd
Response!(Long) geoadd(string key, double longitude, double latitude, string member)
Undocumented in source.
geoadd
Response!(Long) geoadd(string key, Map!(string, GeoCoordinate) memberCoordinateMap)
Undocumented in source.
geodist
Response!(Double) geodist(string key, string member1, string member2)
Undocumented in source.
geodist
Response!(Double) geodist(string key, string member1, string member2, GeoUnit unit)
Undocumented in source.
geohash
Response!(List!(string)) geohash(string key, string[] members)
Undocumented in source.
geopos
Response!(List!(GeoCoordinate)) geopos(string key, string[] members)
Undocumented in source.
georadius
Response!(List!(GeoRadiusResponse)) georadius(string key, double longitude, double latitude, double radius, GeoUnit unit)
Undocumented in source.
georadiusReadonly
Response!(List!(GeoRadiusResponse)) georadiusReadonly(string key, double longitude, double latitude, double radius, GeoUnit unit)
Undocumented in source.
georadius
Response!(List!(GeoRadiusResponse)) georadius(string key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source.
georadiusReadonly
Response!(List!(GeoRadiusResponse)) georadiusReadonly(string key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source.
georadiusByMember
Response!(List!(GeoRadiusResponse)) georadiusByMember(string key, string member, double radius, GeoUnit unit)
Undocumented in source.
georadiusByMemberReadonly
Response!(List!(GeoRadiusResponse)) georadiusByMemberReadonly(string key, string member, double radius, GeoUnit unit)
Undocumented in source.
georadiusByMember
Response!(List!(GeoRadiusResponse)) georadiusByMember(string key, string member, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source.
georadiusByMemberReadonly
Response!(List!(GeoRadiusResponse)) georadiusByMemberReadonly(string key, string member, double radius, GeoUnit unit, GeoRadiusParam param)
Undocumented in source.
xadd
Response!(StreamEntryID) xadd(string key, StreamEntryID id, Map!(string, string) hash)
Undocumented in source.
xadd
Response!(StreamEntryID) xadd(string key, StreamEntryID id, Map!(string, string) hash, long maxLen, bool approximateLength)
Undocumented in source.
xlen
Response!(Long) xlen(string key)
Undocumented in source.
xrange
Response!(List!(StreamEntry)) xrange(string key, StreamEntryID start, StreamEntryID end, int count)
Undocumented in source.
xrevrange
Response!(List!(StreamEntry)) xrevrange(string key, StreamEntryID end, StreamEntryID start, int count)
Undocumented in source.
xack
Response!(Long) xack(string key, string group, StreamEntryID[] ids)
Undocumented in source.
xgroupCreate
Response!(string) xgroupCreate(string key, string groupname, StreamEntryID id, bool makeStream)
Undocumented in source.
xgroupSetID
Response!(string) xgroupSetID(string key, string groupname, StreamEntryID id)
Undocumented in source.
xgroupDestroy
Response!(Long) xgroupDestroy(string key, string groupname)
Undocumented in source.
xgroupDelConsumer
Response!(string) xgroupDelConsumer(string key, string groupname, string consumername)
Undocumented in source.
xpending
Response!(List!(StreamPendingEntry)) xpending(string key, string groupname, StreamEntryID start, StreamEntryID end, int count, string consumername)
Undocumented in source.
xdel
Response!(Long) xdel(string key, StreamEntryID[] ids)
Undocumented in source.
xtrim
Response!(Long) xtrim(string key, long maxLen, bool approximateLength)
Undocumented in source.
xclaim
Response!(List!(StreamEntry)) xclaim(string key, string group, string consumername, long minIdleTime, long newIdleTime, int retries, bool force, StreamEntryID[] ids)
Undocumented in source.
bitpos
Response!(Long) bitpos(string key, bool value)
Undocumented in source.
bitpos
Response!(Long) bitpos(string key, bool value, BitPosParams params)
Undocumented in source.
set
Response!(string) set(string key, string value, SetParams params)
Undocumented in source.
srandmember
Response!(List!(string)) srandmember(string key, int count)
Undocumented in source.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(string key, string min, string max)
Undocumented in source.
zrangeByScoreWithScores
Response!(Set!(Tuple)) zrangeByScoreWithScores(string key, string min, string max, int offset, int count)
Undocumented in source.
objectRefcount
Response!(Long) objectRefcount(string key)
Undocumented in source.
objectEncoding
Response!(string) objectEncoding(string key)
Undocumented in source.
objectIdletime
Response!(Long) objectIdletime(string key)
Undocumented in source.
incrByFloat
Response!(Double) incrByFloat(string key, double increment)
Undocumented in source.
psetex
Response!(string) psetex(string key, long milliseconds, string value)
Undocumented in source.
hincrByFloat
Response!(Double) hincrByFloat(string key, string field, double increment)
Undocumented in source.
sendCommand
Response!(Object) sendCommand(ProtocolCommand cmd, string[] args)
Undocumented in source.

Meta