I\'m working in a .NET application where we have a very large cache implemented with a Dictionary.I remove things from the cache via a TTL and a reaper that periodically checks for expired items.A giv
Can anyone tell me how the Flash Player Garbage Collector works please? No worry about version, even if you tell me about GC in Flash Player 8.0, 9.0, or 10.0 it does not matter.
I have a loop in my code that generates many byte[] arrays (around 1 to 2 MB each), fills them with data, and then discard the reference. So, even though the reference is only held for a
This question already has answers here: Closed 11 years ago. Possible Duplicate: Java garbage collector - When does it collect?
I\'m having a problem with the Android Garbage Collector and was hoping someone could point out what I may be doing wrong here.I have a lot of data at the start of my program that is generated and thr
The following piece of code worked fine if garbage collection开发者_StackOverflow社区 was not turned on in the project properties option.But with GC turned on, this is the error message:
I have been reading about garbage collection and came to know the term \"Island Of Isolation\", such as when ObjectA references to ObjectB and ObjectB simultaneously references to ObjectA.
I have a HttpHandler which is called frequently. It uses Entity Framework to accomplish its task. There\'s slow increasing in used memory by the w3p.exe of this web application (it has a separate app
I have two classes Class A { //construct开发者_运维知识库or } Class B { private A a; public B() { a = new A();
I\'ve read from multiple sources that a java garbage collector frees the mem开发者_如何学Pythonory of objects that are not being used. My question is how does it know its not being used? Am i correct