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.

My app has Places with many different categories of attributes. Each place has a HABTM relationship with these attributes. For instance (in psuedo code):

Place
  has_many :land_uses #options: residential, commercial, lodging, recreational
  has_many :ammenities #options: garden, pool, fitness room, restaurant

each attribute corresponds to a model with some additional meta information, such as:

LandUse (id code:string name:string description:text icon:string)

Whenever someone creates a Place they need to specify which (if any) of these attributes apply.

The reason I've set these up as HABTMs with models is that there's a many to many relationship between these attributes and the Places, and I need to be able to easily search using these attributes to find places that match.

However, there are two big problems with this: (1) There's an uncomfortably close coupling between these attribute records and the code of the app. Without the correct seed records the app won't work, and (2) This means displaying a Place requires many table lookups. I'm concerned that these problems are going to negatively impact the performance of my app.

My question is: is there a better way to accomplish this?

  • Would a polymorphic 'attributes' table perform better, so only one table was being searched for all attributes rather than a different table (and join table) for each set of attributes?

  • Or, is there some other way to store a "select multiple" attribute on a model that is easily searchable (unlike serialization)?

  • Lastly, as an added bonus, how would you setup some performance benchmark tests for something like this, in order to compare the performance of different options?

I really appreciate any feedback. Also if you don't know the answer to this, please consider a comment etc. to bump it up so it doesn't just get lost! Thanks!!

share|improve this question
This is actually a join model not a HABTM. I don't see much of a way around what you're doing other than something in the way of caching. This may be of interest to you in terms of seeding though: stackoverflow.com/questions/761123/… – Karl Aug 5 '11 at 17:28
I've got a similar situation in an app that i'm working on and ended up using acts-as-taggable on - the contexts map to your attributes and the tags map to your options. It may not be the best or most efficient way, but it's certainly the easiest! – chrispanda Aug 5 '11 at 17:32

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.