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

Persist() public method

public Persist ( string key ) : bool
key string
return bool
        public bool Persist(string key)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectLong(Commands.Persist, key.ToUtf8Bytes()) == Success;
        }
RedisNativeClient