vote up 4 vote down star
2

I have seen two different approaches in saving user preferences.

APPROACH 1: Serializing them and saving in one of the column of USERS table

APPROACH 2: Creating a separate table PREFERENCES and make a has_many association from USERS to PREFERENCES.

Which one of the above two approaches would you prefer and what are the pros and cons of each over other?

flag

76% accept rate
What type of preference are you storing? Boolean? Multiple items? – hopeless Jul 3 at 15:10
@hopeless - that would be Multiple Items. I tend to lean towards Option 2, but by looking at the rails serialize option, I feel like using Hash as an option, option 1 could be accomplished more or less similar to option 1, there by not having another table and more SQL joins. Any feedback is appreciated. Also what exactly you guys mean by cluttering the USERS table, all the preferences will be stored in preferences column only. – satynos Jul 3 at 16:11
@satynos - clutter means the user table is now more confusing because it does more than just (I assume) hold login/name information. If you are serializing, it means more work when you need to look things up, too. Basically you have to parse ALL of the preferences EVERY time you need to know one. Putting the prefs (if there are only a few) as fields on the user table is better than the blob o' prefs because you don't have to look at all the prefs to find out one. – Joel Meador Jul 3 at 17:07
thanks for the feedback, so option 2 it is then. – satynos Jul 4 at 16:37
"Basically you have to parse ALL of the preferences EVERY time you need to know one" -- yeah, and parsing YAML is incredibly fast. FWIW, no one gives any real reasons here, it's pure religion. – Horace Loeb Sep 12 at 4:54

5 Answers

vote up 7 vote down check

It's usually a good idea to favor normalization. The second solution keeps your models cleaner, allows for easy extensibility if new preferences are added, and keeps your tables uncluttered.

link|flag
vote up 1 vote down

Approach 2

You can add preferences, without cluttering up the user table

link|flag
vote up 0 vote down

Approach 2 allows you to easily add new user preferences

link|flag
vote up 0 vote down

There are some Rails plugins to handle this usecase:

  • Preference-fu (good for simple boolean preferences, uses a single column for multiple preferences)
  • Preferences (more flexible, uses a separate table, some nice syntactic sugar)
link|flag
vote up 0 vote down

I'd approach 2 because it is cleaner and easier to update. You will be able to add more preferences as complex as you want.

It will be a bit slower since you have a join to do, but it'll be worth it

link|flag

Your Answer

Get an OpenID
or

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