ServiceStack.Redis.RedisNativeClient.PfMerge C# (CSharp) Метод

PfMerge() публичный Метод

public PfMerge ( string toKeyId ) : void
toKeyId string
Результат 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