We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6057d3 commit 9e939bfCopy full SHA for 9e939bf
1 file changed
src/ServiceStack.Interfaces/Redis/IRedisClient.cs
@@ -81,7 +81,9 @@ public interface IRedisClient
81
void SetValue(string key, string value);
82
void SetValue(string key, string value, TimeSpan expireIn);
83
bool SetValueIfNotExists(string key, string value);
84
+ bool SetValueIfNotExists(string key, string value, TimeSpan expireIn);
85
bool SetValueIfExists(string key, string value);
86
+ bool SetValueIfExists(string key, string value, TimeSpan expireIn);
87
88
string GetValue(string key);
89
string GetAndSetValue(string key, string value);
0 commit comments