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

PfMerge() public method

public PfMerge ( string toKeyId ) : void
toKeyId string
return void
        public void PfMerge(string toKeyId, params string[] fromKeys)
        {
            var fromKeyBytes = fromKeys.Map(x => x.ToUtf8Bytes()).ToArray();
            var cmdWithArgs = MergeCommandWithArgs(Commands.PfMerge, toKeyId.ToUtf8Bytes(), fromKeyBytes);
            SendExpectSuccess(cmdWithArgs);
        }
RedisNativeClient