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