Pause GC of C #

Source: Internet
Author: User

Source: http://stackoverflow.com/questions/6005865/prevent-net-garbage-collection-for-short-period-of-time

 

GCLatencyMode oldMode = GCSettings.LatencyMode;// Make sure we can always go to the catch block, // so we can set the latency mode back to `oldMode`RuntimeHelpers.PrepareConstrainedRegions();try{    GCSettings.LatencyMode = GCLatencyMode.LowLatency;    // Generation 2 garbage collection is now    // deferred, except in extremely low-memory situations}finally{    // ALWAYS set the latency mode back    GCSettings.LatencyMode = oldMode;}

That will allow you to disable the GC as much as you can. It won't do any large collections of objects:

  • You callGC.Collect()
  • You setGCSettings.LatencyModeTo something otherLowLatency
  • The OS sends a low-memory signal to the CLR

Please be careful when doing this, because memory usage can climb extremely fast while you're in thattryBlock. If the GC is collecting, it's doing it for a reason, and you shoshould only seriously consider this if you have a large amount of memory on your system.

In reference to question three, perhaps you can try reusing objects like byte arrays if you're using ing information through filesystem I/O or a network? If you're parsing that information into M classes, try reusing those too, but I can't give too much good advice without knowing more about what exactly you're doing.

Here are some MSDN articles that can help too:

  • Latency Modes
  • Constrained Execution Regions (this is why we callPrepareConstrainedRegions())
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.