Currently I am facing the problem that my application is showing long GC times sporadically,开发者_如何学JAVA but all these are only caused by weak reference processing. So the thread stopped time is
In .Net 4 there is improved Garbage Collection which is important for our systems. If I have a .Net 4 Winforms project that references .Net 2/.Net3.5 class libraries what version of .Net is used for
Is there any third party solution , VCL ,Plugins etc to do automatic garbage co开发者_StackOverflow社区llection in Delphi for win32 You can use interfaces for doing such garbage collection.
I have an application that is using a lot more than expected short lived objects this is causing significant performance issues which I need to resolve. To give you a开发者_高级运维n idea of the scale
I have written a Java program that builds up a huge arraylist (with more than 7 million elements). Then iterating on the elements of that arraylist, I am building up a second arraylist whose size is a
When I read a few articles about memory management in C#, I was confused by Finalizer methods. There are so many complicated rules which related with them.
I\'m trying to debu开发者_JAVA技巧g a memory leak (see question Memory leak in Python Twisted: where is it?).
What 开发者_运维百科are the .net library calls and system calls that cause the most garbage? I read somewhere DayLightTime causes a lot of garbage and result in garbage collector activity.
I\'ve heard of Java programs with开发者_开发问答 strict latency requirements where \"new\" instructions are never -or very rarely- used (because no new=>no objects->no GC=>improved latency)... instead
Consider the following segment of code: function loadSomeContent() { URLLoader loader = new URLLoader(\"http://www.somesite.com/\");