RedisDatabase.setXX - multiple declarations
Function RedisDatabase.setXX
Set the value of a key, only if the key already exists
bool setXX(T)
(
string key,
T value
)
if (isValidRedisValueType!T);
Function RedisDatabase.setXX
Set the value of a key, only if the key already exists, and also set the specified expire time using D notation, e.g. 5
for 5 minutes.
bool setXX(T)
(
string key,
T value,
Duration expire_time
)
if (isValidRedisValueType!T);