class Redis

def randomkey

Return a random key from the keyspace.
def randomkey
  synchronize do
    @client.call(:randomkey)
  end
end