class Redis

def expireat(key, unix_time)

Set the expiration for a key as a UNIX timestamp.
def expireat(key, unix_time)
  synchronize do
    _bool @client.call(:expireat, key, unix_time)
  end
end