class Redis

def zcard(key)

Get the number of members in a sorted set.
def zcard(key)
  synchronize do
    @client.call(:zcard, key)
  end
end