MultiKeyBinaryRedisPipeline

Multikey related commands (these are split out because they are non-shardable)

interface MultiKeyBinaryRedisPipeline {}

Members

Functions

bitop
Response!(Long) bitop(BitOP op, const(ubyte)[] destKey, const(ubyte)[][] srcKeys)
Undocumented in source.
blpop
Response!(List!(const(ubyte)[])) blpop(const(ubyte)[][] args)
Undocumented in source.
brpop
Response!(List!(const(ubyte)[])) brpop(const(ubyte)[][] args)
Undocumented in source.
brpoplpush
Response!(const(ubyte)[]) brpoplpush(const(ubyte)[] source, const(ubyte)[] destination, int timeout)
Undocumented in source.
del
Response!(Long) del(const(ubyte)[][] keys)
Undocumented in source.
exists
Response!(Long) exists(const(ubyte)[][] keys)
Undocumented in source.
keys
Response!(Set!(const(ubyte)[])) keys(const(ubyte)[] pattern)
Undocumented in source.
mget
Response!(List!(const(ubyte)[])) mget(const(ubyte)[][] keys)
Undocumented in source.
migrate
Response!(string) migrate(string host, int port, int destinationDB, int timeout, MigrateParams params, const(ubyte)[][] keys)
Undocumented in source.
mset
Response!(string) mset(const(ubyte)[][] keysvalues)
Undocumented in source.
msetnx
Response!(Long) msetnx(const(ubyte)[][] keysvalues)
Undocumented in source.
pfcount
Response!(Long) pfcount(const(ubyte)[][] keys)
Undocumented in source.
pfmerge
Response!(string) pfmerge(const(ubyte)[] destkey, const(ubyte)[][] sourcekeys)
Undocumented in source.
publish
Response!(Long) publish(const(ubyte)[] channel, const(ubyte)[] message)
Undocumented in source.
randomKeyBinary
Response!(const(ubyte)[]) randomKeyBinary()
Undocumented in source.
rename
Response!(string) rename(const(ubyte)[] oldkey, const(ubyte)[] newkey)
Undocumented in source.
renamenx
Response!(Long) renamenx(const(ubyte)[] oldkey, const(ubyte)[] newkey)
Undocumented in source.
rpoplpush
Response!(const(ubyte)[]) rpoplpush(const(ubyte)[] srckey, const(ubyte)[] dstkey)
Undocumented in source.
sdiff
Response!(Set!(const(ubyte)[])) sdiff(const(ubyte)[][] keys)
Undocumented in source.
sdiffstore
Response!(Long) sdiffstore(const(ubyte)[] dstkey, const(ubyte)[][] keys)
Undocumented in source.
sinter
Response!(Set!(const(ubyte)[])) sinter(const(ubyte)[][] keys)
Undocumented in source.
sinterstore
Response!(Long) sinterstore(const(ubyte)[] dstkey, const(ubyte)[][] keys)
Undocumented in source.
smove
Response!(Long) smove(const(ubyte)[] srckey, const(ubyte)[] dstkey, const(ubyte)[] member)
Undocumented in source.
sort
Response!(Long) sort(const(ubyte)[] key, SortingParams sortingParameters, const(ubyte)[] dstkey)
Undocumented in source.
sort
Response!(Long) sort(const(ubyte)[] key, const(ubyte)[] dstkey)
Undocumented in source.
sunion
Response!(Set!(const(ubyte)[])) sunion(const(ubyte)[][] keys)
Undocumented in source.
sunionstore
Response!(Long) sunionstore(const(ubyte)[] dstkey, const(ubyte)[][] keys)
Undocumented in source.
touch
Response!(Long) touch(const(ubyte)[][] keys)
Undocumented in source.
unlink
Response!(Long) unlink(const(ubyte)[][] keys)
Undocumented in source.
watch
Response!(string) watch(const(ubyte)[][] keys)
Undocumented in source.
zinterstore
Response!(Long) zinterstore(const(ubyte)[] dstkey, const(ubyte)[][] sets)
Undocumented in source.
zinterstore
Response!(Long) zinterstore(const(ubyte)[] dstkey, ZParams params, const(ubyte)[][] sets)
Undocumented in source.
zunionstore
Response!(Long) zunionstore(const(ubyte)[] dstkey, const(ubyte)[][] sets)
Undocumented in source.
zunionstore
Response!(Long) zunionstore(const(ubyte)[] dstkey, ZParams params, const(ubyte)[][] sets)
Undocumented in source.

Meta