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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T02:20:10+00:00 2026-06-06T02:20:10+00:00

I would like to run a script indefinitely. It look likes my current script,

  • 0

I would like to run a script indefinitely. It look likes my current script, as represented below, causes a memory leak. In addition I would like to retain the @time_value array since I need to cycle through the values for each new run.

  class Data

    def initialize
      first_method
      @time_value = [30, 60, 90]
    end

    def first_method

      # get some data; takes about 1 hour
      second_method
    end

    def second_method
      #process the data
      first_method
    end
  end

  d = Data.new
  • 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-06-06T02:20:13+00:00Added an answer on June 6, 2026 at 2:20 am

    Perpetual recursion may not only continue to consume memory but will eventually fail with a stack overflow. Change your indefinite processing to a simple loop.

    class Data
      def initialize
        @time_value = [30, 60, 90]
      end
    
      def run_forever
        while true
          first_method
          second_method
        end
      end
    
      def first_method
        # get some data; takes about 1 hour
      end
    
      def second_method
        #process the data
      end
    end
    
    Data.new.run_forever
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to run a script after files with certain extensions are saved
I would like to suppress output in R when I run my R script
I would like to create a ruby script that I can run mysql commands
I would like to be able to run a nose test script which accepts
I would like to run a compression script before git push such that anytime
I have a python script which I would like to run at regular intervals.
I would like run a PHP script that runs every second to update a
I would like to run a shell script, from a file or from an
I would like to run a PHP script from another PHP script so that
I would like to run for example a synchronizing ruby script (in rails action

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.