class Redis::Distributed

def expireat(key, unix_time, **kwargs)

Set the expiration for a key as a UNIX timestamp.
def expireat(key, unix_time, **kwargs)
  node_for(key).expireat(key, unix_time, **kwargs)
end