class Redis
def pexpireat(key, ms_unix_time)
-
(Boolean)
- whether the timeout was set or not
Parameters:
-
ms_unix_time
(Fixnum
) -- expiry time specified as number of milliseconds from UNIX Epoch. -
key
(String
) --
def pexpireat(key, ms_unix_time) synchronize do |client| client.call([:pexpireat, key, ms_unix_time], &Boolify) end end