BinaryRedis.sinterstore

This commanad works exactly like {@link #sinter(const(ubyte)[]...) SINTER} but instead of being returned the resulting set is stored as dstkey. <p> Time complexity O(N*M) worst case where N is the cardinality of the smallest set and M the number of sets @param dstkey @param keys @return Status code reply

class BinaryRedis
Long
sinterstore
(
const(ubyte)[] dstkey
,
const(ubyte)[][] keys...
)

Meta