vote up 2 vote down star

I just read this as a requirement on a job listing:

  • Aware of the pitfalls of code like: User.find(:all).each

and knew instantly I was unqualified for this job because for the life of me, I don't understand what the problem is . . .

Is it design related? Store the database request in a variable and THEN iterate over it?

Is it dangerous?

Is it wordy? You can do the same with User.all.each ? (-1 word! w00t!)

Is it simply poorly worded? Should it be prefaced with "The users table happens to have 3 million rows"

Any clarification is much appreciated!

flag

Funny thing is that I came here after seeing this job posting too – dolzenko Jun 3 at 8:18
I took an interview at a company with the same requirement. I was indeed unqualified for the position. I knew that from the onset, but I trudged on anyway intrigued by his questions. I have never had a phone interview where I've been drilled like that. Kudos to the guy for knowing exactly what we wants, but change your posting to reflect that! – MediaJunkie Jun 26 at 0:10

4 Answers

vote up 5 vote down check

I think the "pitfall" they are looking for is that when someone writes User.all.each, it usually looks like this:

User.all.each do |u|
    next if !u.is_active
    ...
end

meaning that the filtering is happening in Ruby, after having loaded the entire contents of each of those objects from the DB, when the filtering could have been done much more efficiently by expressing the desired property as part of the query.

link|flag
golly, there are things below a level of common sense that I can't even begin to consider. – kch May 6 at 23:11
I mean, who would use next when one can use reject/select? LOLZ. – kch May 6 at 23:11
@kch agreed! The lack of clarification made me think it must be something VERY deep . . . LOL – BushyMark May 6 at 23:19
As an additional note, it also loads all columns for each row/User, maybe even some that you don't need. (This includes creating even more objects for associations to other tables) – deathy May 7 at 4:11
vote up 4 vote down

Doing User.all will load in all the user records. If you have 3 million records, it will load in all 3 million objects. This is why it is a bad idea. It's best to filter down your SQL using methods like pagination or conditions to return the smallest subset needed to "get the job done"

link|flag
vote up 2 vote down

Is it wordy? You can do the same with User.all.each ? (-1 word! w00t!)

We do appreciate brevity in the land of ruby. I, for one, vote for implementing Model.each, now that you made me consider it.

Is it simply poorly worded? Should it be prefaced with "The users table happens to have 3 million rows"

I believe this is the most reasonable answer. You may be loading a lot of records into memory.

I'd say the problem is not so much that the users table happens to have 3m records, but that it may come to have them within a reasonable timeframe.

link|flag
- We do appreciate brevity in the land of ruby. I, for one, vote for implementing Model.each, now that you made me consider it. me <-- pwned! – BushyMark May 6 at 23:22
vote up 0 vote down

Well, if you want to sound smart, you answer is: There is no pitfall to that question, assuming that you want to modify or display values from each and every one of the user objects. :-)

link|flag
No, even then you should get them in batches. – Walt Gordon Jones May 7 at 7:58

Your Answer

Get an OpenID
or

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