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

PfCount() public method

public PfCount ( string key ) : long
key string
return long
        public long PfCount(string key)
        {
            var cmdWithArgs = MergeCommandWithArgs(Commands.PfCount, key.ToUtf8Bytes());
            return SendExpectLong(cmdWithArgs);
        }
RedisNativeClient