Some of you probably know that some of core java APIs make explicit calls to System.gc(). I know two cases when this happens:
I\'m trying to track down a memory leak in my web application which is causing the PermGen space to fill up and throw OutOfMemoryError: PermGen size after a couple of reloads. Now I know that I can ju
I a开发者_如何转开发m developing a parallel garbage collector. It is a tri-marking collector that does the usual white->grey->black. When the collector moves an object from grey to black it descends i
I am working on a game for android right now. It is a game where I have to change the activity very often. Actually it is a cycle of activities. After searching a bit in google I found this article:
I\'m writing a game for android platform. I have bullets in ConcurrentHashMap and im checking for collisions. All works great but GC is running every 3-5 seconds, when checking with Allocation Tracker
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not generally applic
A 2-parter (if necessary I can seperate questions to award seperate right answers): We\'re in a situation where running in server mode is likely appropriate: We have 2 enterprise level apps running o
I have a blank Winform with a destructor method public partial class Form1 : Form { public Form1() { System.Diagnostics.Trace.WriteLine(\"Form1.Initialize \" + this.GetHashCode().ToString());
We\'re dealing with the GC being too quick in a .Net program. Because we use a class with native resources and we do not call GC.KeepAlive(), the GC collects the object before the Native access ends.
Can the resources of one machine in 开发者_开发百科a web farm be affected to such a point by an app running with Garbage Collection Mode = \"server mode\" such that the network load balancer will adju