ServiceStack.Redis.RedisNativeClient.SDiffStore C# (CSharp) Method

SDiffStore() public method

public SDiffStore ( string intoSetId, string fromSetId ) : void
intoSetId string
fromSetId string
return void
        public void SDiffStore(string intoSetId, string fromSetId, params string[] withSetIds)
        {
            var setIdsList = new List<string>(withSetIds);
            setIdsList.Insert(0, fromSetId);
            setIdsList.Insert(0, intoSetId);

            var cmdWithArgs = MergeCommandWithArgs(Commands.SDiffStore, setIdsList.ToArray());
            SendExpectSuccess(cmdWithArgs);
        }
RedisNativeClient