I'm evaluating Cassandra as a POC for a potential move from another database. I read that when using CQL it's recommended to optimize tables as one-per-query, which means that when I insert/update/delete one of those records, I'll have to do so in every table in which I've written it.
Is there some support for this in the mapper? My initial usage of it does not indicate that there is any support, or can I just add multiple annotations to a class to tell it there are many tables, and each has a key that looks like x/y/z/etc.?
Thanks