RAM 'swells' up

Rafael Mestdag

Reputable
Mar 25, 2014
1,442
1
5,460
After about a couple of hours of using my pc, the RAM usage swells up to 60-65% and I have to reboot. Even when I'm not using a lot of programs it happens. It's a matter of time more than anything else. I've heard about memory leaking but I don't know if it's my case or how to pinpoint it.

Any ideas?

Thx in advance! :)
 
Solution


It's a terrible idea because you have no idea what it is doing or how it is doing it. In all likelihood it's not doing what you think it's doing, and is most likely doing something that you don't want it to do. Managing memory is the job of the operating system's kernel and current memory management methods are the culmination of over 50 years of R&D. Any program that reduces memory...

Rafael Mestdag

Reputable
Mar 25, 2014
1,442
1
5,460


This is it:

84adufh6x


http://postimg.org/image/84adufh6x/
 


There is literally zero need for this. All it's doing is slowing down your PC, and probably loading a bunch of malware in too.
 

Rafael Mestdag

Reputable
Mar 25, 2014
1,442
1
5,460


Why is it terrible? It only keeps the RAM at those levels at idle. And besides the computer is fast and responsive, no problems whatsoever.
 


Because it most likely kills off important stuff, that while technically deferrable, is a bad idea to ignore. Stuff like defrags, updates, indexing etc.
 


It's a terrible idea because you have no idea what it is doing or how it is doing it. In all likelihood it's not doing what you think it's doing, and is most likely doing something that you don't want it to do. Managing memory is the job of the operating system's kernel and current memory management methods are the culmination of over 50 years of R&D. Any program that reduces memory usage is either killing off processes without your knowledge or is patching the kernel (which is a good way to end up with BSoDs and security breaches). Trust me when I say that some random program that you found on the internet is not going to beat a 400 billion dollar company at its own game.

Primary memory is very much a use-it-or-lose-it resource. The system aims to use 100% of the available physical memory for either process usage or as a cache. If the total demand from processes exceeds the amount of available physical memory the kernel will start pushing infrequently used data into a swap space located on a hard disk.
 
Solution