ShardedRedisPipeline

Constructors

this
this()
Undocumented in source.

Members

Functions

getClient
Client getClient(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. Be warned that the author may not have intended to support it.
getResults
List!(Object) getResults()
Undocumented in source. Be warned that the author may not have intended to support it.
setShardedRedis
void setShardedRedis(BinaryShardedRedis jedis)
Undocumented in source. Be warned that the author may not have intended to support it.
sync
void sync()

Synchronize pipeline by reading all responses. This operation closes the pipeline. In order to get return values from pipelined commands, capture the different Response<?> of the commands you execute.

syncAndReturnAll
List!(Object) syncAndReturnAll()

Synchronize pipeline by reading all responses. This operation closes the pipeline. Whenever possible try to avoid using this version and use ShardedRedisPipeline.sync() as it won't go through all the responses and generate the right response type (usually it is a waste of time). @return A list of all the responses in the order you executed them.

Inherited Members

From PipelineBase

getClient
Client getClient(string key)
Undocumented in source.
getClient
Client getClient(const(ubyte)[] key)
Undocumented in source.
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.
blpop
Response!(List!(string)) blpop(string 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.
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!(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.
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.
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.
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.
getbit
Response!(Boolean) getbit(string key, long offset)
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.
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.
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.
getSet
Response!(string) getSet(string key, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
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.
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.
hdel
Response!(Long) hdel(string key, string[] field)
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.
hexists
Response!(Boolean) hexists(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.
hget
Response!(string) hget(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.
hgetAll
Response!(Map!(string, string)) hgetAll(string key)
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.
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.
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.
hkeys
Response!(Set!(string)) hkeys(string key)
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.
hlen
Response!(Long) hlen(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.
hmget
Response!(List!(string)) hmget(string key, string[] fields)
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.
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.
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.
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.
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, 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.
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.
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.
hvals
Response!(List!(string)) hvals(string key)
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.
incr
Response!(Long) incr(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.
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.
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.
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.
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.
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.
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(string key, string[] member)
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.
strlen
Response!(Long) strlen(string key)
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.
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.
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.
touch
Response!(Long) touch(string key)
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.
ttl
Response!(Long) ttl(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.
type
Response!(string) type(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.
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.
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, 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, 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(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(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)
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.
zcard
Response!(Long) zcard(string key)
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.
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.
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(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(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
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.
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(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(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.
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.
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.
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, 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!(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(string 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(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(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(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(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(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(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.
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.
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, 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, 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, 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!(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!(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.
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.
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(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(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(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(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(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(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.
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.
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.
zrank
Response!(Long) zrank(string key, string member)
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.
zrem
Response!(Long) zrem(string key, string[] members)
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.
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.
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.
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.
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(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(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
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.
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.
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.
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.
zrevrank
Response!(Long) zrevrank(string key, string member)
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.
zscore
Response!(Double) zscore(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.
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.
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.
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.
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, 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, int offset, int count)
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.
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.
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.
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.
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.
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.
objectRefcount
Response!(Long) objectRefcount(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.
objectEncoding
Response!(string) objectEncoding(string key)
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.
objectIdletime
Response!(Long) objectIdletime(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.
pexpire
Response!(Long) pexpire(string key, long milliseconds)
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.
pexpireAt
Response!(Long) pexpireAt(string key, long millisecondsTimestamp)
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.
pttl
Response!(Long) pttl(string key)
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.
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.
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.
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.
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.
incrByFloat
Response!(Double) incrByFloat(string key, double 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.
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.
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.
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.
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.
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(const(ubyte)[] key)
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.
pfcount
Response!(Long) pfcount(string key)
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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(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.
bitfield
Response!(List!(Long)) bitfield(string key, string[] elements)
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.
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.
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.
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, 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, long maxLen, bool approximateLength)
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.
xlen
Response!(Long) xlen(const(ubyte)[] key)
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
xgroupDestroy
Response!(Long) xgroupDestroy(string key, string groupname)
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.
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.
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.
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.
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.
xdel
Response!(Long) xdel(string key, 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.
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.
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.
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.
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.
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.

Meta