class Redis

def set(key, value)

Set the string value of a key.
def set(key, value)
  synchronize do
    @client.call(:set, key, value)
  end
end