class Redis

def scard(key)

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