dbader / schedule

Python job scheduling for humans.
https://schedule.readthedocs.io/
MIT License
11.83k stars 965 forks source link

Does your program freeup memory every after a scheduled event? #449

Closed codewithpatch closed 3 years ago

codewithpatch commented 3 years ago

I have been searching if after every job, your program frees up memory or does the memory usage stack up as your program runs?

SijmenHuizenga commented 3 years ago

The schedule library's memory usage does not increase as it runs for a longer period of time. Schedule does not track the execution history. The memory usage after scheduling the jobs should be ~equal to the memory usage after a long period of time. Does this answer your question?

codewithpatch commented 3 years ago

Yes. This answers my question. Thanks!