Method: Redis#pexpireat
- Defined in:
- lib/redis.rb
#pexpireat(key, ms_unix_time) ⇒ Boolean
Set the expiration for a key as number of milliseconds from UNIX Epoch.
351 352 353 354 355 |
# File 'lib/redis.rb', line 351 def pexpireat(key, ms_unix_time) synchronize do |client| client.call([:pexpireat, key, ms_unix_time], &_boolify) end end |