Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

System memory optimization #31

Open
2 tasks
ronnielutaro opened this issue Dec 30, 2022 · 0 comments
Open
2 tasks

System memory optimization #31

ronnielutaro opened this issue Dec 30, 2022 · 0 comments
Labels
Epic Groups multiple user stories, can be grouped under a theme
Milestone

Comments

@ronnielutaro
Copy link
Member

Similarly, the goal is to have full autonomy for memory optimization. If you use too much memory, or build up too much memory with a program running over time, performance is going to degrade. Using too much memory without releasing it to the heap (the virtual memory available as a resource to all programs) can result in running out of memory on the machine, requiring a reboot and potentially leading to many issues.

Ideally, in a well-written program, you use memory and then return it to the heap. That way there is always something on the heap to take from. Each program is allocated a piece of the heap. If a particular program (or programs) keep sucking up a disproportionate amount of the heap, program performance suffers until an eventual crash.

  • Memory optimization should be able to happen autonomously in the background.
  • Memory optimization should also be able to happen when manually invoked by the user
@ronnielutaro ronnielutaro added the Epic Groups multiple user stories, can be grouped under a theme label Dec 30, 2022
@ronnielutaro ronnielutaro added this to the v1.0.0 milestone Dec 30, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Epic Groups multiple user stories, can be grouped under a theme
Projects
None yet
Development

No branches or pull requests

1 participant