65.9K
CodeProject is changing. Read more.
Home

Effectively Flushing Reserved Memory By Process

starIconstarIcon
emptyStarIcon
starIcon
emptyStarIconemptyStarIcon

2.50/5 (2 votes)

Jun 15, 2014

CPOL

1 min read

viewsIcon

12410

This trick is about how to effectively reduce reserved memory by process.

Introduction

In this trick, I'm going to describe a short but effective way to reduce assigned memory to our process.

Background

All the time, I was looking for a good way to decrease allocated memory to .NET applications. I used some methods such as GC.Collect() and IDisposable interface to dispose reserved memory by application, but none of them helped me. Finally, I found System.Diagnostics.Process.MinWorkingSet property that works perfectly.

Using the Code

MinWorkingSet is a public property of System.Diagnostics.Process class. By using this property, we can get or set minimum size of the allocated memory to process. But in this way, it works opposite of its name.

For decreasing memory of current process, we should set a value (e.g. 3000) to MinWorkingSet property like below:

try
{
      System.Diagnostics.Process.GetCurrentProcess().MinWorkingSet = (IntPtr)3000;
}
catch
{
}

After setting this value, you can see the allocated memory to application decreased to 3000KB ~ 4000KB. But after some seconds, it grows to about 7000KB ~ 8000KB again. For using this trick as well as you want, you should use a timer and call this code in each period of time (e.g. 30s).

I hope this trick helps you my dear friends. I apologise for my weak English language.