# File lib/redis.rb, line 1690
  def hset(key, field, value)
    synchronize do |client|
      client.call([:hset, key, field, value], &_boolify)
    end
  end