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 6976301
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:28:43+00:00 2026-05-27T17:28:43+00:00

I know it looks like a silly question , but how am I supposed

  • 0

I know it looks like a silly question , but how am I supposed to fetch some data to ruby object periodically ? or after number of tries ,

Lets say I have :

 @variable = SomeModel.all 

and I don’t wanna fetch the results all the time so I can do

 @variable ||= SomeModel.all 

But how am I supposed to do that every periodic time without using something like memcache or 3rd party solution ? Any tricky way to do such a thing ?

Thanks .

  • 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-27T17:28:44+00:00Added an answer on May 27, 2026 at 5:28 pm

    untested:

    Cache ={}
    def fetch(key, ttl)
      obj, timestamp = Cache[key]
      now = Time.now
      if obj.nil? || now - timestamp > ttl
        obj = yield
        Cache[key]=[obj, now]
      end 
      obj
    end
    

    usage:

    variable = fetch(:variable, 10.seconds) { SomeModel.all }
    

    If nil is also a valid value, just use a default :no_value_stored as the default when reading from the cache and change the if block.

    Sidenote: this will likely blow up on you if the keys are too many, as the hash grows indefinitely, so you should clean it up manually or use weak references.

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

Sidebar

Related Questions

I know this looks like a silly question, but using object oriented stuff with
This looks like a long shot, but does anyone know of a way to:
I know this looks like a lot of text, but I think it's a
This may be a silly question for some of you, but what are Pros/Cons
This might sound like a bit of a silly question but I been looking
Okay. I know this looks like the typical Why didn't he just Google it
I want to know what this looks like. I don't have any ideas about
I have a string looks like aeroport aimé I know it is French, and
The file looks like: a1,b1 a2,b2 ... I know the value a2. How to
I know at first glance (due to the title) this looks like one of

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.