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!!