Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.