class Redis

def pexpireat(key, ms_unix_time)

Returns:
  • (Boolean) - whether the timeout was set or not

Parameters:
  • ms_unix_time (Integer) -- 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