class Redis

def zscore(key, member)

Get the score associated with the given member in a sorted set.
def zscore(key, member)
  synchronize do
    @client.call(:zscore, key, member)
  end
end