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