Commands

Undocumented in source.
interface Commands {}

Members

Functions

append
void append(string key, string value)
Undocumented in source.
bgrewriteaof
void bgrewriteaof()
Undocumented in source.
bgsave
void bgsave()
Undocumented in source.
bitcount
void bitcount(string key, long start, long end)
Undocumented in source.
bitcount
void bitcount(string key)
Undocumented in source.
bitfield
void bitfield(string key, string[] arguments)

Used for BITFIELD Redis command @param key @param arguments

bitop
void bitop(BitOP op, string destKey, string[] srcKeys)
Undocumented in source.
blpop
void blpop(string[] args)
Undocumented in source.
brpop
void brpop(string[] args)
Undocumented in source.
brpoplpush
void brpoplpush(string source, string destination, int timeout)
Undocumented in source.
clientGetname
void clientGetname()
Undocumented in source.
clientKill
void clientKill(ClientKillParams params)
Undocumented in source.
clientKill
void clientKill(string ip, int port)
Undocumented in source.
clientKill
void clientKill(string ipPort)
Undocumented in source.
clientList
void clientList()
Undocumented in source.
clientSetname
void clientSetname(string name)
Undocumented in source.
configGet
void configGet(string pattern)
Undocumented in source.
configResetStat
void configResetStat()
Undocumented in source.
configSet
void configSet(string parameter, string value)
Undocumented in source.
decr
void decr(string key)
Undocumented in source.
decrBy
void decrBy(string key, long decrement)
Undocumented in source.
del
void del(string[] keys)
Undocumented in source.
discard
void discard()
Undocumented in source.
dump
void dump(string key)
Undocumented in source.
echo
void echo(string string)
Undocumented in source.
exec
void exec()
Undocumented in source.
exists
void exists(string[] keys)
Undocumented in source.
expire
void expire(string key, int seconds)
Undocumented in source.
expireAt
void expireAt(string key, long unixTime)
Undocumented in source.
get
void get(string key)
Undocumented in source.
getSet
void getSet(string key, string value)
Undocumented in source.
getbit
void getbit(string key, long offset)
Undocumented in source.
getrange
void getrange(string key, long startOffset, long endOffset)
Undocumented in source.
hdel
void hdel(string key, string[] fields)
Undocumented in source.
hexists
void hexists(string key, string field)
Undocumented in source.
hget
void hget(string key, string field)
Undocumented in source.
hgetAll
void hgetAll(string key)
Undocumented in source.
hincrBy
void hincrBy(string key, string field, long value)
Undocumented in source.
hincrByFloat
void hincrByFloat(string key, string field, double value)
Undocumented in source.
hkeys
void hkeys(string key)
Undocumented in source.
hlen
void hlen(string key)
Undocumented in source.
hmget
void hmget(string key, string[] fields)
Undocumented in source.
hmset
void hmset(string key, Map!(string, string) hash)
Undocumented in source.
hscan
void hscan(string key, string cursor, ScanParams params)
Undocumented in source.
hset
void hset(string key, string field, string value)
Undocumented in source.
hset
void hset(string key, Map!(string, string) hash)
Undocumented in source.
hsetnx
void hsetnx(string key, string field, string value)
Undocumented in source.
hstrlen
void hstrlen(string key, string field)

Used for HSTRLEN Redis command @param key @param field

hvals
void hvals(string key)
Undocumented in source.
incr
void incr(string key)
Undocumented in source.
incrBy
void incrBy(string key, long increment)
Undocumented in source.
incrByFloat
void incrByFloat(string key, double increment)
Undocumented in source.
keys
void keys(string pattern)
Undocumented in source.
lastsave
void lastsave()
Undocumented in source.
lindex
void lindex(string key, long index)
Undocumented in source.
linsert
void linsert(string key, ListPosition where, string pivot, string value)
Undocumented in source.
llen
void llen(string key)
Undocumented in source.
lpop
void lpop(string key)
Undocumented in source.
lpush
void lpush(string key, string[] strings)
Undocumented in source.
lpushx
void lpushx(string key, string[] string)
Undocumented in source.
lrange
void lrange(string key, long start, long stop)
Undocumented in source.
lrem
void lrem(string key, long count, string value)
Undocumented in source.
lset
void lset(string key, long index, string value)
Undocumented in source.
ltrim
void ltrim(string key, long start, long stop)
Undocumented in source.
memoryDoctor
void memoryDoctor()
Undocumented in source.
mget
void mget(string[] keys)
Undocumented in source.
migrate
void migrate(string host, int port, int destinationDB, int timeout, MigrateParams params, string[] keys)
Undocumented in source.
migrate
void migrate(string host, int port, string key, int destinationDB, int timeout)
Undocumented in source.
move
void move(string key, int dbIndex)
Undocumented in source.
mset
void mset(string[] keysvalues)
Undocumented in source.
msetnx
void msetnx(string[] keysvalues)
Undocumented in source.
multi
void multi()
Undocumented in source.
objectEncoding
void objectEncoding(string key)
Undocumented in source.
objectIdletime
void objectIdletime(string key)
Undocumented in source.
objectRefcount
void objectRefcount(string key)
Undocumented in source.
persist
void persist(string key)
Undocumented in source.
ping
void ping(string message)
Undocumented in source.
pttl
void pttl(string key)
Undocumented in source.
rename
void rename(string oldkey, string newkey)
Undocumented in source.
renamenx
void renamenx(string oldkey, string newkey)
Undocumented in source.
restore
void restore(string key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source.
restoreReplace
void restoreReplace(string key, int ttl, const(ubyte)[] serializedValue)
Undocumented in source.
rpop
void rpop(string key)
Undocumented in source.
rpoplpush
void rpoplpush(string srckey, string dstkey)
Undocumented in source.
rpush
void rpush(string key, string[] strings)
Undocumented in source.
rpushx
void rpushx(string key, string[] string)
Undocumented in source.
sadd
void sadd(string key, string[] members)
Undocumented in source.
save
void save()
Undocumented in source.
scan
void scan(string cursor, ScanParams params)
Undocumented in source.
scard
void scard(string key)
Undocumented in source.
sdiff
void sdiff(string[] keys)
Undocumented in source.
sdiffstore
void sdiffstore(string dstkey, string[] keys)
Undocumented in source.
set
void set(string key, string value)
Undocumented in source.
set
void set(string key, string value, SetParams params)
Undocumented in source.
setbit
void setbit(string key, long offset, bool value)
Undocumented in source.
setbit
void setbit(string key, long offset, string value)
Undocumented in source.
setex
void setex(string key, int seconds, string value)
Undocumented in source.
setnx
void setnx(string key, string value)
Undocumented in source.
setrange
void setrange(string key, long offset, string value)
Undocumented in source.
sinter
void sinter(string[] keys)
Undocumented in source.
sinterstore
void sinterstore(string dstkey, string[] keys)
Undocumented in source.
sismember
void sismember(string key, string member)
Undocumented in source.
smembers
void smembers(string key)
Undocumented in source.
smove
void smove(string srckey, string dstkey, string member)
Undocumented in source.
sort
void sort(string key)
Undocumented in source.
sort
void sort(string key, SortingParams sortingParameters)
Undocumented in source.
sort
void sort(string key, SortingParams sortingParameters, string dstkey)
Undocumented in source.
sort
void sort(string key, string dstkey)
Undocumented in source.
spop
void spop(string key)
Undocumented in source.
spop
void spop(string key, long count)
Undocumented in source.
srandmember
void srandmember(string key)
Undocumented in source.
srem
void srem(string key, string[] member)
Undocumented in source.
sscan
void sscan(string key, string cursor, ScanParams params)
Undocumented in source.
strlen
void strlen(string key)
Undocumented in source.
substr
void substr(string key, int start, int end)
Undocumented in source.
sunion
void sunion(string[] keys)
Undocumented in source.
sunionstore
void sunionstore(string dstkey, string[] keys)
Undocumented in source.
touch
void touch(string[] keys)
Undocumented in source.
ttl
void ttl(string key)
Undocumented in source.
type
void type(string key)
Undocumented in source.
unlink
void unlink(string[] keys)
Undocumented in source.
waitReplicas
void waitReplicas(int replicas, long timeout)
Undocumented in source.
watch
void watch(string[] keys)
Undocumented in source.
xack
void xack(string key, string group, StreamEntryID[] ids)
Undocumented in source.
xadd
void xadd(string key, StreamEntryID id, Map!(string, string) hash, long maxLen, bool approximateLength)
Undocumented in source.
xclaim
void xclaim(string key, string group, string consumername, long minIdleTime, long newIdleTime, int retries, bool force, StreamEntryID[] ids)
Undocumented in source.
xdel
void xdel(string key, StreamEntryID[] ids)
Undocumented in source.
xgroupCreate
void xgroupCreate(string key, string consumer, StreamEntryID id, bool makeStream)
Undocumented in source.
xgroupDelConsumer
void xgroupDelConsumer(string key, string consumer, string consumerName)
Undocumented in source.
xgroupDestroy
void xgroupDestroy(string key, string consumer)
Undocumented in source.
xgroupSetID
void xgroupSetID(string key, string consumer, StreamEntryID id)
Undocumented in source.
xlen
void xlen(string key)
Undocumented in source.
xpending
void xpending(string key, string groupname, StreamEntryID start, StreamEntryID end, int count, string consumername)
Undocumented in source.
xrange
void xrange(string key, StreamEntryID start, StreamEntryID end, long count)
Undocumented in source.
xread
void xread(int count, long block, MapEntry!(string, StreamEntryID)[] streams)
Undocumented in source.
xreadGroup
void xreadGroup(string groupname, string consumer, int count, long block, bool noAck, MapEntry!(string, StreamEntryID)[] streams)
Undocumented in source.
xrevrange
void xrevrange(string key, StreamEntryID end, StreamEntryID start, int count)
Undocumented in source.
xtrim
void xtrim(string key, long maxLen, bool approximateLength)
Undocumented in source.
zadd
void zadd(string key, Map!(string, double) scoreMembers, ZAddParams params)
Undocumented in source.
zadd
void zadd(string key, Map!(string, double) scoreMembers)
Undocumented in source.
zadd
void zadd(string key, double score, string member, ZAddParams params)
Undocumented in source.
zadd
void zadd(string key, double score, string member)
Undocumented in source.
zcard
void zcard(string key)
Undocumented in source.
zcount
void zcount(string key, string min, string max)
Undocumented in source.
zcount
void zcount(string key, double min, double max)
Undocumented in source.
zincrby
void zincrby(string key, double increment, string member, ZIncrByParams params)
Undocumented in source.
zincrby
void zincrby(string key, double increment, string member)
Undocumented in source.
zinterstore
void zinterstore(string dstkey, string[] sets)
Undocumented in source.
zinterstore
void zinterstore(string dstkey, ZParams params, string[] sets)
Undocumented in source.
zrange
void zrange(string key, long start, long stop)
Undocumented in source.
zrangeByScore
void zrangeByScore(string key, string min, string max, int offset, int count)
Undocumented in source.
zrangeByScore
void zrangeByScore(string key, double min, double max, int offset, int count)
Undocumented in source.
zrangeByScore
void zrangeByScore(string key, string min, string max)
Undocumented in source.
zrangeByScore
void zrangeByScore(string key, double min, double max)
Undocumented in source.
zrangeByScoreWithScores
void zrangeByScoreWithScores(string key, string min, string max, int offset, int count)
Undocumented in source.
zrangeByScoreWithScores
void zrangeByScoreWithScores(string key, string min, string max)
Undocumented in source.
zrangeByScoreWithScores
void zrangeByScoreWithScores(string key, double min, double max, int offset, int count)
Undocumented in source.
zrangeByScoreWithScores
void zrangeByScoreWithScores(string key, double min, double max)
Undocumented in source.
zrangeWithScores
void zrangeWithScores(string key, long start, long stop)
Undocumented in source.
zrank
void zrank(string key, string member)
Undocumented in source.
zrem
void zrem(string key, string[] members)
Undocumented in source.
zremrangeByRank
void zremrangeByRank(string key, long start, long stop)
Undocumented in source.
zremrangeByScore
void zremrangeByScore(string key, string min, string max)
Undocumented in source.
zremrangeByScore
void zremrangeByScore(string key, double min, double max)
Undocumented in source.
zrevrange
void zrevrange(string key, long start, long stop)
Undocumented in source.
zrevrangeByScore
void zrevrangeByScore(string key, string max, string min, int offset, int count)
Undocumented in source.
zrevrangeByScore
void zrevrangeByScore(string key, double max, double min, int offset, int count)
Undocumented in source.
zrevrangeByScore
void zrevrangeByScore(string key, string max, string min)
Undocumented in source.
zrevrangeByScore
void zrevrangeByScore(string key, double max, double min)
Undocumented in source.
zrevrangeByScoreWithScores
void zrevrangeByScoreWithScores(string key, string max, string min, int offset, int count)
Undocumented in source.
zrevrangeByScoreWithScores
void zrevrangeByScoreWithScores(string key, string max, string min)
Undocumented in source.
zrevrangeByScoreWithScores
void zrevrangeByScoreWithScores(string key, double max, double min, int offset, int count)
Undocumented in source.
zrevrangeByScoreWithScores
void zrevrangeByScoreWithScores(string key, double max, double min)
Undocumented in source.
zrevrangeWithScores
void zrevrangeWithScores(string key, long start, long stop)
Undocumented in source.
zrevrank
void zrevrank(string key, string member)
Undocumented in source.
zscan
void zscan(string key, string cursor, ScanParams params)
Undocumented in source.
zscore
void zscore(string key, string member)
Undocumented in source.
zunionstore
void zunionstore(string dstkey, ZParams params, string[] sets)
Undocumented in source.
zunionstore
void zunionstore(string dstkey, string[] sets)
Undocumented in source.

Meta