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

PfAdd() public method

public PfAdd ( string key ) : bool
key string
return bool
        public bool PfAdd(string key, params byte[][] elements)
        {
            var cmdWithArgs = MergeCommandWithArgs(Commands.PfAdd, key.ToUtf8Bytes(), elements);
            return SendExpectLong(cmdWithArgs) == 1;
        }
RedisNativeClient