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