How to get back the memory?

Community Forums/General Help/How to get back the memory?

Happy Sammy(Posted 2009) [#1]
Hi all,

After running a 'memory leak' program (eg. exe of a bad C++ prg),
how could we get the the leak memory?
Any software to do so?

Thanks in advance


SebHoll(Posted 2009) [#2]
Your operating system should clean up all the memory a process allocates as soon as the process ends/is terminated.


puki(Posted 2009) [#3]
I use FreeRamXP 1.52 - it is probably the most popular memory managment app. You can get it here - plus many other apps:

http://majorgeeks.com/downloads26.html


Happy Sammy(Posted 2009) [#4]
@SebHoll: Yes, except unused allocated memory.
@puki: Thank you for your recommendations.


ervin(Posted 2009) [#5]
CleanMem is also another very nice little program for this task.
I use it to clear cached data from RAM when I need to re-run SQL queries over and over again, during the optimisation stages.


Happy Sammy(Posted 2009) [#6]
Thank you, ervin.