class Redis

def hget(key, field)

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