class Redis

def get(key)

Get the value of a key.
def get(key)
  synchronize do
    @client.call(:get, key)
  end
end