class Redis

def smembers(key)

Get all the members in a set.
def smembers(key)
  synchronize do
    @client.call(:smembers, key)
  end
end