# File lib/redis.rb, line 1418
  def zscore(key, member)
    synchronize do |client|
      client.call([:zscore, key, member]) do |reply|
        _floatify(reply) if reply
      end
    end
  end