I just started using Cassandra DB. I want to create materialized representations of Cassandra (for storing requests), but after searching on google I did not find any information about this. Maybe it's forbidden in Kassandra?
Well, materialized views in a relational database (e.g. Oracle) can be created with the following expression:
CREATE MATERIALIZED VIEW table_mv
BUILD IMMEDIATE
REFRESH FAST ON COMMIT
AS SELECT * FROM tabla;
Is there something similar in Cassandra CQL? Or, how can I save a query in a table in Cassandra CQL?
thanks
source
share