Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6042241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:46:05+00:00 2026-05-23T06:46:05+00:00

I am using Ruby on Rails 3.0.7 and I would like to know what

  • 0

I am using Ruby on Rails 3.0.7 and I would like to know what are advantages and disavantages (relating to performance) to use the User.all method and then perform finder methods on the result for each request needed instead of use User.find(<id>) to retrieve each record singly.

I ask this because in my view file I have something like this:

accounts.each { |account|
  puts account.user.name
}

UPDATE

For example, how the Stackoverflow website would handle tags regarding finder methods?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T06:46:06+00:00Added an answer on May 23, 2026 at 6:46 am

    Don’t fetch all of anything unless you’re sure the data set is very small, on the order of dozens of records at most. Fetching all users is a recipe for disaster as the memory usage of this operation will increase linearly with the number of users on your system.

    You must use the find or where methods when retrieving sub-sets under most circumstances unless you can be absolutely sure that the number of records involved is trivial.

    I would even advocate using select_values or select_rows when all you need is a tiny bit of data without the overhead of a model, something that works well for large tabular lists.

    Remember when you load a model, you load everything associated with it by default. For users this could include their extended biography, their address, their favorite color, their email, their password, and all you use is their name before throwing that object away. Fetch only what you need if performance is a concern.

    It is almost always a mistake to have the following in your controller:

    @users = Users.all
    

    What you need to do is paginate or that page will get progressively slower as more users sign up on your system. At some point the page will never render properly as it will time out first.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Ruby on Rails 3 and I would like to know some
I am using Ruby on Rails 3 and I would like to know what
I'm using Ruby on Rails 2.3.8 and I would like to know how to
I'm using Ruby on Rails 2.3.8 and I would like to get all the
I am building web applications using Ruby on Rails and I would like to
I would like to create something like this using ruby on rails. Im not
I am using Ruby on Rails 3 and I would like, in some way,
I am running Ruby on Rails 3 and I would like to know if
I am using Ruby on Rails. I want to create a filter field on
I am using ruby on rails with a MySQL backend. I have a table

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.