BinaryRedisPipeline

Undocumented in source.
interface BinaryRedisPipeline {}

Members

Functions

append
Response!(Long) append(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source.
bitcount
Response!(Long) bitcount(const(ubyte)[] key, long start, long end)
Undocumented in source.
bitcount
Response!(Long) bitcount(const(ubyte)[] key)
Undocumented in source.
bitfield
Response!(List!(Long)) bitfield(const(ubyte)[] key, const(ubyte)[][] elements)
Undocumented in source.
bitpos
Response!(Long) bitpos(const(ubyte)[] key, bool value, BitPosParams params)
Undocumented in source.
bitpos
Response!(Long) bitpos(const(ubyte)[] key, bool 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.
dump
Response!(const(ubyte)[]) dump(const(ubyte)[] key)
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.
expireAt
Response!(Long) expireAt(const(ubyte)[] key, long unixTime)
Undocumented in source.
geoadd
Response!(Long) geoadd(const(ubyte)[] key, Map!(const(ubyte)[], GeoCoordinate) memberCoordinateMap)
Undocumented in source.
geoadd
Response!(Long) geoadd(const(ubyte)[] key, double longitude, double latitude, const(ubyte)[] member)
Undocumented in source.
geodist
Response!(Double) geodist(const(ubyte)[] key, const(ubyte)[] member1, const(ubyte)[] member2, GeoUnit unit)
Undocumented in source.
geodist
Response!(Double) geodist(const(ubyte)[] key, const(ubyte)[] member1, const(ubyte)[] member2)
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, GeoRadiusParam param)
Undocumented in source.
georadius
Response!(List!(GeoRadiusResponse)) georadius(const(ubyte)[] key, double longitude, double latitude, 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.
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, GeoRadiusParam param)
Undocumented in source.
georadiusByMemberReadonly
Response!(List!(GeoRadiusResponse)) georadiusByMemberReadonly(const(ubyte)[] key, const(ubyte)[] member, double radius, GeoUnit unit)
Undocumented in source.
georadiusReadonly
Response!(List!(GeoRadiusResponse)) georadiusReadonly(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)
Undocumented in source.
get
Response!(const(ubyte)[]) get(const(ubyte)[] key)
Undocumented in source.
getSet
Response!(const(ubyte)[]) getSet(const(ubyte)[] key, const(ubyte)[] value)
Undocumented in source.
getbit
Response!(Boolean) getbit(const(ubyte)[] key, long offset)
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.
hincrByFloat
Response!(Double) hincrByFloat(const(ubyte)[] key, const(ubyte)[] field, double increment)
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.
hstrlen
Response!(Long) hstrlen(const(ubyte)[] key, const(ubyte)[] field)
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.
incrByFloat
Response!(Double) incrByFloat(const(ubyte)[] key, double 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.
migrate
Response!(string) migrate(string host, int port, const(ubyte)[] key, int destinationDB, int timeout)
Undocumented in source.
move
Response!(Long) move(const(ubyte)[] key, int dbIndex)
Undocumented in source.
objectEncoding
Response!(const(ubyte)[]) objectEncoding(const(ubyte)[] key)
Undocumented in source.
objectIdletime
Response!(Long) objectIdletime(const(ubyte)[] key)
Undocumented in source.
objectRefcount
Response!(Long) objectRefcount(const(ubyte)[] key)
Undocumented in source.
persist
Response!(Long) persist(const(ubyte)[] key)
Undocumented in source.
pexpire
Response!(Long) pexpire(const(ubyte)[] key, long milliseconds)
Undocumented in source.
pexpireAt
Response!(Long) pexpireAt(const(ubyte)[] key, long millisecondsTimestamp)
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.
psetex
Response!(string) psetex(const(ubyte)[] key, long milliseconds, const(ubyte)[] value)
Undocumented in source.
pttl
Response!(Long) pttl(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.
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.
sendCommand
Response!(Object) sendCommand(ProtocolCommand cmd, const(ubyte)[][] args)
Undocumented in source.
set
Response!(string) set(const(ubyte)[] key, const(ubyte)[] value, SetParams params)
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.
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.
setrange
Response!(Long) setrange(const(ubyte)[] key, long offset, const(ubyte)[] value)
Undocumented in source.
sismember
Response!(Boolean) sismember(const(ubyte)[] key, const(ubyte)[] member)
Undocumented in source.
smembers
Response!(Set!(const(ubyte)[])) smembers(const(ubyte)[] key)
Undocumented in source.
sort
Response!(List!(const(ubyte)[])) sort(const(ubyte)[] key, SortingParams sortingParameters)
Undocumented in source.
sort
Response!(List!(const(ubyte)[])) sort(const(ubyte)[] key)
Undocumented in source.
spop
Response!(Set!(const(ubyte)[])) spop(const(ubyte)[] key, long count)
Undocumented in source.
spop
Response!(const(ubyte)[]) spop(const(ubyte)[] key)
Undocumented in source.
srandmember
Response!(const(ubyte)[]) srandmember(const(ubyte)[] key)
Undocumented in source.
srandmember
Response!(List!(const(ubyte)[])) srandmember(const(ubyte)[] key, int count)
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.
type
Response!(string) type(const(ubyte)[] key)
Undocumented in source.
unlink
Response!(Long) unlink(const(ubyte)[] keys)
Undocumented in source.
xack
Response!(Long) xack(const(ubyte)[] key, const(ubyte)[] group, const(ubyte)[][] ids)
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.
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.
xdel
Response!(Long) xdel(const(ubyte)[] key, const(ubyte)[][] ids)
Undocumented in source.
xgroupCreate
Response!(string) xgroupCreate(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] id, bool makeStream)
Undocumented in source.
xgroupDelConsumer
Response!(string) xgroupDelConsumer(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] consumername)
Undocumented in source.
xgroupDestroy
Response!(Long) xgroupDestroy(const(ubyte)[] key, const(ubyte)[] groupname)
Undocumented in source.
xgroupSetID
Response!(string) xgroupSetID(const(ubyte)[] key, const(ubyte)[] groupname, const(ubyte)[] id)
Undocumented in source.
xlen
Response!(Long) xlen(const(ubyte)[] key)
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.
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.
xtrim
Response!(Long) xtrim(const(ubyte)[] key, long maxLen, bool approximateLength)
Undocumented in source.
zadd
Response!(Long) zadd(const(ubyte)[] key, Map!(const(ubyte)[], double) scoreMembers, 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, double score, const(ubyte)[] member, ZAddParams params)
Undocumented in source.
zadd
Response!(Long) zadd(const(ubyte)[] key, double score, const(ubyte)[] member)
Undocumented in source.
zcard
Response!(Long) zcard(const(ubyte)[] key)
Undocumented in source.
zcount
Response!(Long) zcount(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source.
zcount
Response!(Long) zcount(const(ubyte)[] key, double min, double max)
Undocumented in source.
zincrby
Response!(Double) zincrby(const(ubyte)[] key, double increment, const(ubyte)[] member, ZIncrByParams params)
Undocumented in source.
zincrby
Response!(Double) zincrby(const(ubyte)[] key, double increment, const(ubyte)[] member)
Undocumented in source.
zlexcount
Response!(Long) zlexcount(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
Undocumented in source.
zrange
Response!(Set!(const(ubyte)[])) zrange(const(ubyte)[] key, long start, long stop)
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.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max, int offset, int count)
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)
Undocumented in source.
zrangeByScore
Response!(Set!(const(ubyte)[])) zrangeByScore(const(ubyte)[] key, double min, double 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.
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.
zremrangeByLex
Response!(Long) zremrangeByLex(const(ubyte)[] key, const(ubyte)[] min, const(ubyte)[] max)
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.
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.
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.
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.

Meta