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