Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have such models structure:

class Entity < ActiveRecord::Base
  habtm :properties_1
  # ... 
  habtm :properties_N
end

I need to write request by any set of properties, it causes N joins:

Entity.joins(:properties_1, :properties_N).where("properties_1.id = ? AND properties.N = ?", p1_id, pN_id) 

N may be > 20

What can I use to increase query performance?

I think about caching all this settings to big table with serialized attributes, but it looks like this problem is common and, probably, any existed solution is present.

Any ideas?

Thanks for advance!

share|improve this question

1 Answer

this is looks like Entity-Attribute-Value (EAV) pattern.

http://www.slideshare.net/stepanyuk/implementation-of-eav-pattern-for-activerecord-models-13263311

https://github.com/kostyantyn/hydra_attribute

EAV is not good solution in relational databases, it is better to use document-oriented DB like MongoDB

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.