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

Slowlog() public method

public Slowlog ( int top ) : object[]
top int
return object[]
        public object[] Slowlog(int? top)
        {
            if (top.HasValue)
                return SendExpectDeeplyNestedMultiData(Commands.Slowlog, Commands.Get, top.Value.ToUtf8Bytes());
            else
                return SendExpectDeeplyNestedMultiData(Commands.Slowlog, Commands.Get);
        }
RedisNativeClient