We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b425168 commit f790981Copy full SHA for f790981
src/ServiceStack.Interfaces/Redis/IRedisClient.cs
@@ -111,6 +111,7 @@ public interface IRedisClient
111
long DecrementValueBy(string key, int count);
112
List<string> SearchKeys(string pattern);
113
114
+ string Type(string key);
115
RedisKeyType GetEntryType(string key);
116
string GetRandomKey();
117
bool ExpireEntryIn(string key, TimeSpan expireIn);
src/ServiceStack.Interfaces/Redis/IRedisNativeClient.cs
@@ -59,6 +59,7 @@ public interface IRedisNativeClient
59
60
//Common key-value Redis operations
61
byte[][] Keys(string pattern);
62
63
long Exists(string key);
64
long StrLen(string key);
65
void Set(string key, byte[] value);
0 commit comments