I would recommend leaving this thing alone if this is not a problem. If you have performance issues, try and isolate the code that generates most page crashes. Maybe somewhere you are using a large memory object.
Try to keep your "unsafe" code as isolated and simple as possible, i.e. encapsulate all unsafe code in a class or function. Keep in mind that spoiling the .NET GC can lead to complications, mostly unnecessary.
Check out this article for a slightly unsafe introduction (this is a bit outdated, but still true): http://www.codeproject.com/KB/cs/unsafe_prog.aspx
In addition, you can increase the time before collecting GC, this can help
Nitay
source share