"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > When is it Acceptable to Call GC.Collect()?

When is it Acceptable to Call GC.Collect()?

Posted on 2025-03-23
Browse:396

When is it Acceptable to Call GC.Collect()?

Time to use GC.Collect with caution

While it is not usually recommended to call GC.Collect() directly, in some specific cases, this is reasonable. For example, when a service runs in a circular manner and is idle for a long time after executing a task, it is possible to optimize resource utilization when it is forced to garbage collection during the idle phase to free up memory occupied by the process that is about to fail.

Another acceptable situation is after closing a large form in a GUI application. Since all UI controls meet garbage collection at this time, and the short performance drop during form closing users may not notice it, it is reasonable to start GC collection.

In addition, the following situations may also require consideration of calling GC.Collect():

  • When you have solid evidence that a large number of objects (especially Gen 1 and Gen 2 objects) are ready for garbage collection, and that the performance impact is minimal.
  • Starting from .NET 4.5, when entering or exiting GCLatencyMode.LowLatency or GCLatencyMode.SustainedLowLatency is recommended to enforce full GC using GC.Collect(2, GCCollectionMode.Forced) when entering or exiting
  • GCLatencyMode.SustainedLowLatency
  • . Using .NET 4.6, you can use the
  • GC.TryStartNoGCRegion
method to disable GC for a period of time. It is recommended to manually trigger the full GC before and after this period.

These exceptions emphasize the importance of caution when calling

GC.Collect()

. It is important to evaluate the specific environment and potential performance impact before making this decision. When is it Acceptable to Call GC.Collect()?

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3