7
votes
5answers
118 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 …
3
votes
7answers
206 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 …
1
vote
9answers
170 views
Why Is Garbage Collection So Important?
I don't understand garbage collection so good, then I want to know, why it's so important to a language and to the developer?
1
vote
5answers
43 views
C# - Release native resources
Hi All,
I am relatively new to .net. As I was trying to grasp the concept of Garbage Collection(from "CLR via C#"), I came to know how strong is the Garbage collection approach. B …
3
votes
6answers
162 views
doubts regarding Memory management in .net
I'm ready about Memory management in C# from the book "Professional C#"
The presence of the garbage collector
means that you will usually not worry
about objects that you n …
1
vote
6answers
97 views
Garbage Collector in Real-Time System
I'm new to C#/Java and plan to prototype it for soft real-time system.
If I wrote C#/Java app just like how I do in C++ in terms of memory management, that is, I explicitly "delet …
0
votes
2answers
63 views
doubts regarding Memory management in .net [closed]
Possible Duplicate:
doubts regarding Memory management in .net
I'm reading about Memory management in C# from the book "Professional C#"
The presence of the garbage co …
0
votes
5answers
134 views
Java: Garbage Collection
I'm having an out of memory error. I have a large range of inputs (2^40), that is too large to hold at once. Each input is a String[].
Instead, I thought I'd run my test program …
0
votes
6answers
59 views
vector and garbage collector
I'm running a java program that uses many vectors. I'm afraid my use of them is causing the garbage collector not to work.
I have many threads that do:
vec.addAll(<collection& …
1
vote
4answers
61 views
LRU LinkedHashMap that limits size based on available memory
I want to create a LinkedHashMap which will limit its size based on available memory (ie. when freeMemory + (maxMemory - allocatedMemory) gets below a certain threshold). This wil …
0
votes
5answers
103 views
Manually garbage collection in Python
Is there any way to manually remove an object which the garbage collection refuses to get rid of even when I call gc.collect()? Working in Python 3.0
1
vote
3answers
59 views
Limiting the size of the managed heap in a C# application
Can I configure my C# application to limit its memory consumption to, say, 200MB?
IOW, I don't want to wait for the automatic GC (which seems to allow the heap to grow much more th …
0
votes
0answers
16 views
Some Async Socket Code - Help with Garbage Collection?
Hi all,
I think this question is really about my understanding of Garbage collection and variable references. But I will go ahead and throw out some code for you to look at.
// …
0
votes
2answers
45 views
Using Image.FromFile does not release handle on a file
Hello,
I'm doing a join of multiple multi-image tiff files to a single multi-image tiff file and have a problem with deleting the source tiff files, because the Image class contin …
0
votes
1answer
27 views
Static Semaphore passed as member to Thread class instance = bug?
There are a few windows service projects in our codebase that follow this model, and I just want to make sure it's not a bug.
In this model, there is at least one static "timer" c …
