class Redis::Distributed

def expire(key, seconds)

Set a key's time to live in seconds.
def expire(key, seconds)
  node_for(key).expire(key, seconds)
end