Redis.sinterstore

This command works exactly like {@link #sinter(string...) 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

  1. Long sinterstore(string dstkey, string[] keys)
    class Redis
    Long
    sinterstore
    (
    string dstkey
    ,
    string[] keys...
    )
  2. alias sinterstore = BinaryRedis.sinterstore

Meta