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

  • Home
  • SEARCH
  • 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 3979092
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T05:07:39+00:00 2026-05-20T05:07:39+00:00

What is a right way to preload Rails model in development mode? Background: Rails

  • 0

What is a right way to preload Rails model in development mode?

Background: Rails 2.2, memcahe as cache store.

When Rails start in production mode first of all it preload and cache all models.
In development mode it use laizy loading. That’s why wen we store any model into rails cache, for example, Rails.cache.write(“key”, User.find(0)) on next loadind of app, when we try do Rails.cache.read(“key”) memcache fire, that User is unknown class/module. What is a right way to preload class in this situation?

  • 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-20T05:07:40+00:00Added an answer on May 20, 2026 at 5:07 am

    You can get around this by doing something like this:

    User if Rails.env == 'development'
    @user = Rails.cache.fetch("key"){ User.find(0) }
    

    This will force the User model to be re-loaded before the cache statement. If you have a class with multiple cache statements you can do this:

    class SomeController
      [User, Profile, Project, Blog, Post] if Rails.env == 'development'
    
      def show
        @user = Rails.cache.fetch("user/#{params[:user_id]") do
          User.find(params[:user_id])
        end
      end
    end
    

    If you are in Rails 2.x and Rails.env does not work you can always use RAILS_ENV or ENV[‘RAILS_ENV’] instead. Of course, your other option is to simply disable caching in your development environment, then you don’t have to deal with this issue at all.

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

Sidebar

Related Questions

What is the right way to populate the model for the index page in
Is this below the right way to preload images? I have a table which
What's the right way to use a monospaced font for all text in a
What is the right way do validate a jpa query programmatically. Hibernate validates all
what is the right way to get here a beautiful output ( all lines
What is the right way to perform some static finallization? There is no static
What's the right way to go about saving data like Pages, Numbers and other
What is the right way to create custom pgsql types for django application so
Is this the right way to do a nested navigation? <dl> <dt>Struktur</dt> <dd> <ul
What's the right way to control timeouts, from the client, when running against a

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.