# File lib/redis.rb, line 673
  def setnx(key, value)
    synchronize do
      _bool @client.call [:setnx, key, value]
    end
  end