This is sort-of a follow-up to this question I asked before: What is the best way to model an entity that can have different attributes?
I wanted to use an Entity–attribute–value model (EAV) to store, retrieve and query Characters that have a distinct set of attributes.
Since we are using Cassandra, I thought about storing these characters and their attributes in Cassandra as well -- instead of storing them in PostgreSQL using the EAV modelling technique described in the answers to the question mentioned.
However, if I do, how do I query for such characters then? For example a query might search for a character that has fur, with a length of its fur set to 10 or less and that has a hat and 10 legs?
How costly would that be compared with the PostgreSQL-Version that has Indexes on these attributes for let's say 100,000 Characters?