M开发者_开发技巧y application loads a data set of approx. 85bm to 100mb each time. The application\'s memory limit is set to 512mb, and this is, theoretically, more than enough.
So I\'ve finally located a problem I have with growing memory consumption. It\'s the class below, which for some reason doesn\'t get garbage collected. What would be the problem?
I am looking for a managed/unmanaged API that will allow开发者_StackOverflow me to find which objects reference another object and are potentially keeping it from being garbage collected.
I have a Django application that exhibits some strange garbage collection behavior. There is one view in particular that will just keep growing the VM size significantly every time it is called - up t
I developed a few classes last month. They grow big (round 30-40 Methods each class). I never take a thought of Memory Leaks, GarbageColletor or something like this (I must say this is my first own b
I have the need to continuously build large strings in a loop and save them to database which currently occasionally yields an OutOfMemoryException.
I had trouble coming up with a good way to word this question, so let me try to explain by example: Suppose I have some interface. For simplicity\'s sake, I\'ll say the interface is IRunnable, and it
I want to store per-thread data in an ADO.NET Data Service. Is it safe to use the ThreadStatic attribute on my thread-specific static variable, or will I run into problems? My concern is that my Threa
I noticed that garbage collection is not yet implemented in gccgo. http://golang.org/doc/gccgo_install.html#Unimplemented
I need an alternative to Java, because I am working on a genetics-calculation project. It takes a lot of memory and the most of the cpu time. And therefore it won´t work when I deploy it on a server,