1
vote
3answers
78 views
interesting OutOfMemoryException with StringBuilder
I have the need to continuously build large strings in a loop and save them to database wich currently occasioanlly yields an OutOfMemoryException.
What is basically going on her …
0
votes
2answers
75 views
GarbageCollector, Dispose or static Methods?
Hi guys,
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 m …
3
votes
7answers
95 views
Memory profiling for Java desktop application
Hi,
My 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.
However, I f …
0
votes
11answers
403 views
Alternative to Java
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 dep …
9
votes
7answers
223 views
Can Sun JVM handle gigantic heap sizes without problems, and how?
I have heard several people claiming that you can not scale the JVM heap size up. I've heard claims of the practical limit being 4 gigabytes (I heard an IBM consultant say that), 1 …
4
votes
3answers
131 views
Is there garbage collection in PHP?
I know that in PHP you don't have to free memory.
Is it reached by garbage collector?
6
votes
2answers
107 views
Python: Behavior of the garbage collector
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 …
3
votes
7answers
207 views
Question about the garbage collector in .NET (memory leak)
I guess this is very basic but since I'm learning .NET by myself, I have to ask this question.
I'm used to coding in C, where you have to free() everything. In C++/.NET, I have re …
22
votes
2answers
314 views
.NET Garbage Collector mystery
In my job we had a problem with OutOfMemoryExpections. I've written simple piece of code to mimic some behavior, and I've ended up with the following mystery. Look at this simple c …
2
votes
3answers
136 views
Does garbage collection work with the Go compiler (gc)?
I noticed that garbage collection is not yet implemented in gccgo.
http://golang.org/doc/gccgo%5Finstall.html#Unimplemented
Does the standard Go compiler (gc) support garbage col …
0
votes
2answers
26 views
Can’t free memory of NSData object
Hi,
i'm new to xcode / cocoa and even objective-c thus my question might be stupid. Im trying to write a program that will hash files in a folder. I looked around and found a way …
1
vote
4answers
60 views
Does a reference to a delegate constitute a reference to an object (to prevent garbage collection)?
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 …
0
votes
4answers
74 views
Object.Finalize() override and GC.Collect()
I cannot seem to understand the behavior of GC.Collect() under the presence of a class overriding Object.Finalize(). This is my base code:
namespace test
{
class Foo
{
~Foo() …
0
votes
5answers
75 views
How do I make Flex/ActionScript 3 objects eligible for Garbage Collection?
How do I make Flex/ActionScript 3 objects eligible for garbage collection? What are the thumb rules?
... apologies if this was answered else where.
4
votes
8answers
315 views
Is garbage collection automatic in standard C++?
From what I understand, in standard C++ whenever you use the new operator you must also use the delete operator at some point to prevent memory leaks. This is because there is no …
