Activity overview
Latest activity by jbeerhalter2
I don't manually call GC anywhere in our code. We do have a hook to do that, but only for memory debugging purposes.
I do see large spikes in the Gen 2 Heap Counter
The objects tend to stay in memory a bit longer, but not much. Many of them are replaced every couple of seconds. / comments
I don't manually call GC anywhere in our code. We do have a hook to do that, but only for memory debugging purposes.
I do see large spikes in the Gen 2 Heap Counter
The objects tend to stay in memo...
Is there any way to prevent this from happening? The full GC hides any visibility into the objects that were created before the GC. / comments
Is there any way to prevent this from happening? The full GC hides any visibility into the objects that were created before the GC.
How can I prevent a full gc on memory snapshots?
My application has a nasty habit of creating a bunch of objects, letting them get to gen 2, and then on a full GC they all get cleaned up. Trouble is, we don't know what the objects are or where th...