I've decide to use NOSQL, Cassandra DB in my new project.
I could't found any document that can help me. I have a huge one-to-many relation in my data model! the question is that, when I want to query on my column family it will return many rows with many similar columns and just one different column for the values of composite column:
ID | Name| Age| ExtraInfo|
--------------------------------------------
myId| myName| myAge|"info": 5423|
myId| myName| myAge|"info": this's a test string|
myId| myName| myAge|"info": 454$|
--------------------------------------------
We will have redundancy in returned result!
Also,
how we can update a composite column in Cassandra? for example how we can insert new column in a composite column for an existing row? should we repeat all data of an id in this case (id and name and age)? what will happen if the rows are so heavy?
Let me ask another question, too! Can we use different types for values of composite columns as above example?