RedisPipeline

Undocumented in source.
interface RedisPipeline {}

Members

Functions

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

Meta