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()
:
GCLatencyMode.LowLatency
or GCLatencyMode.SustainedLowLatency
is recommended to enforce full GC using GC.Collect(2, GCCollectionMode.Forced)
when entering or exiting
Using .NET 4.6, you can use the
These exceptions emphasize the importance of caution when calling
. It is important to evaluate the specific environment and potential performance impact before making this decision.
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