class Redis

def hdel(key, field)

Delete a hash field.
def hdel(key, field)
  synchronize do
    @client.call(:hdel, key, field)
  end
end