Failure Posted August 17, 2013 Posted August 17, 2013 (edited) Hello, with many Bots they have a Memory Leak I'm here to share something simple that reduces it (Actually it trims) The Program is called Memory Cleaner (MemClean) it was once made by a student, but he now works at Microsoft. I suggest if you are interested to read the site also and afterwards download it. http://www.koshyjohn.com/software/memclean/ Hope it helps some of you, Failure. Edit : Memory Leak explained by OhMysteryy. I have no idea why Memory Leaks happen, but they do. So I thought I'd help out. Memory leaks happen when people incorrectly allocate memory usage. It could be the client side or script side, but if there is a memory leak, something is using memory, and then not freeing up that memory block after using it. This is a sign of poor programming, and should always be fixed if the programmer knows what they are doing. Have this problem alot in C programming using malloc, etc. These allocate a section of memory to be used later, and if you dont free it back after use then the program keeps that memory allocated. Maybe this helped Edited August 20, 2013 by Failure
StarService Posted August 17, 2013 Posted August 17, 2013 thanks a bunch, i'll give this a go, but why does this happen? it's a big inconvenience :p
Failure Posted August 17, 2013 Author Posted August 17, 2013 I have no idea why Memory Leaks happen, but they do. So I thought I'd help out. 1
Adriana Posted August 17, 2013 Posted August 17, 2013 Hello, with many Bots they have a Memory Leak I'm here to share something simple that reduces it (Actually it trims) The Program is called Memory Cleaner (MemClean) it was once made by a student, but he now works at Microsoft. I suggest if you are interested to read the site also and afterwards download it. http://www.koshyjohn.com/software/memclean/ Hope it helps some of you, Failure. I also used this and have been for quite sometime. Its a great little helpful program :P i lways have it running
Solution Posted August 17, 2013 Posted August 17, 2013 i highly recommend using cleanmem instead, as this has a much better auto-clean option than this one has
Failure Posted August 17, 2013 Author Posted August 17, 2013 i highly recommend using cleanmem instead, as this has a much better auto-clean option than this one has Oh really? Tell me more, since MemoryCleaner does the same, every 5 minutes. Oh awesome, CleanMem you can set your own time! Please explain in full detail why it is better, when they both do the same. Failure.
Solution Posted August 17, 2013 Posted August 17, 2013 (edited) i highly recommend using cleanmem instead, as this has a much better auto-clean option than this one has Oh really? Tell me more, since MemoryCleaner does the same, every 5 minutes. Oh awesome, CleanMem you can set your own time! Please explain in full detail why it is better, when they both do the same. Failure. nice flame, i gave my opinion. some prefer eclipse, some prefer intelIJ, but yet they do the same. failure. has a bit more features Edited August 17, 2013 by solution
Failure Posted August 17, 2013 Author Posted August 17, 2013 i highly recommend using cleanmem instead, as this has a much better auto-clean option than this one has Oh really? Tell me more, since MemoryCleaner does the same, every 5 minutes. Oh awesome, CleanMem you can set your own time! Please explain in full detail why it is better, when they both do the same. Failure. nice flame, i gave my opinion. some prefer eclipse, some prefer intelIJ, but yet they do the same. failure. has a bit more features Don't think I was flaming, not at all. But yes, it has more features, colors, place, what it should do. Setting a faster limit. But after all, they're doing the same job. Only actual better thing I see is, you can change it to 1 minute and the % of usage and MB cache used.
StarService Posted August 17, 2013 Posted August 17, 2013 Thanks so much helped me! we have a new post count spammer >.<
OhMysteryy Posted August 19, 2013 Posted August 19, 2013 I have no idea why Memory Leaks happen, but they do. So I thought I'd help out. Memory leaks happen when people incorrectly allocate memory usage. It could be the client side or script side, but if there is a memory leak, something is using memory, and then not freeing up that memory block after using it. This is a sign of poor programming, and should always be fixed if the programmer knows what they are doing. Have this problem alot in C programming using malloc, etc. These allocate a section of memory to be used later, and if you dont free it back after use then the program keeps that memory allocated. Maybe this helped :p
Aidden Posted August 19, 2013 Posted August 19, 2013 I have no idea why Memory Leaks happen, but they do. So I thought I'd help out. Memory leaks happen when people incorrectly allocate memory usage. It could be the client side or script side, but if there is a memory leak, something is using memory, and then not freeing up that memory block after using it. This is a sign of poor programming, and should always be fixed if the programmer knows what they are doing. Have this problem alot in C programming using malloc, etc. These allocate a section of memory to be used later, and if you dont free it back after use then the program keeps that memory allocated. Maybe this helped This. A memory leak is basically caused by the client or script not freeing up memory that it asked for after its no longer in use.