What is the canonical way to model many-to-many relations with CQL3 ? Let\'s say I have to tables
CREATE TABLE actor ( id text PRIMARY KEY, given text,
The way to achieve it is denormalizing data creating an actors_by_fans and a fans_by_actors. You can also use sets but this have limitations you already mentioned.
actors_by_fans
fans_by_actors
HTH, Carlo