Method: Redis#expire
- Defined in:
- lib/redis.rb
#expire(key, seconds) ⇒ Boolean
Set a key's time to live in seconds.
1273 1274 1275 1276 1277 |
# File 'lib/redis.rb', line 1273 def expire(key, seconds) synchronize do @client.call [:expire, key, seconds], &_boolify end end |