Clear expiration flags for a key
Clear expiration flags for a key.
redisPersist(key)
key |
The (required) character identifier for the value to be looked up. |
Remove the existing timeout on key, turning the key from volatile (a key with an expire set) to persistent (a key that will never expire as no timeout is associated).
1 if the timeout was removed, 0 if the key does not exists or does not have a timeout set.
B. W. Lewis
http://redis.io/commands
## Not run: redisSet('x',runif(5)) redisExpire('x',10) redisPersist('x') ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.