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