Garbage collection (GC) is a form of automatic memory management. It attempts to reclaim garbage, or memory occupied by objects that are no longer in use by the program.
257
votes
14answers
45k views
Proper use of the IDisposable interface
I know from reading the MSDN documentation that the "primary" use of the IDisposable interface is to clean up unmanaged resources.
To me, "unmanaged" means things like database connections, sockets, ...
139
votes
8answers
44k views
What is JavaScript garbage collection?
What is JavaScript garbage collection? What's important for a web programmer to understand about JavaScript garbage collection, in order to write better code?
126
votes
5answers
113k views
What does the error-message 'java.lang.OutOfMemoryError: GC overhead limit exceeded' mean in Java?
I get this error message as I execute my JUnit tests:
java.lang.OutOfMemoryError: GC overhead limit exceeded
I know what an OutOfMemoryError is, but what does GC overhead limit mean? How can I ...
118
votes
4answers
28k views
How does the new automatic reference counting mechanism work?
Can someone briefly explain to me how ARC works? I know it's different from Garbage Collection, but I was just wondering exactly how it worked.
Also, if ARC does what GC does without hindering ...
117
votes
7answers
91k views
Deleting Objects in JavaScript
I'm a bit confused with JavaScript's delete operator. Take the following piece of code:
var obj = {
helloText: "Hello World!"
};
var foo = obj;
delete obj;
After this piece of code has been ...
102
votes
10answers
36k views
Why doesn't C++ have a garbage collector?
I'm not asking this question because of the merits of garbage collection first of all. My main reason for asking this is that I do know that Bjarne Stroustrup has said that C++ will have a garbage ...
80
votes
12answers
39k views
Do you need to dispose of objects and set them to null?
Do you need to dispose of objects and set them to null, or will the garbage collector clean them up when they go out of scope?
78
votes
4answers
8k views
Do event handlers stop garbage collection from occuring?
If I have the following code:
MyClass pClass = new MyClass();
pClass.MyEvent += MyFunction;
pClass = null;
Will pClass be garbage collected? Or will it hang around still firing its events whenever ...
69
votes
12answers
3k views
Best practice for creating millions of small temporary objects
What are the "best practices" for creating (and releasing) millions of small objects?
I am writing a chess program in Java and the search algorithm generates a single "Move" object for each possible ...
68
votes
5answers
32k views
Where Is Machine.Config?
I want to change to use Server GC - I can do that by using the machine.config
The only problem is I do not know where that is
68
votes
7answers
3k views
How do you prevent IDisposable from spreading to all your classes?
Start with these simple classes...
Let's say I have a simple set of classes like this:
class Bus
{
Driver busDriver = new Driver();
}
class Driver
{
Shoe[] shoes = { new Shoe(), new Shoe() ...
67
votes
8answers
13k views
Why is it a bad practice to call System.gc?
After answering to a question about how to force-free objects in Java (the guy was clearing a 1.5GB HashMap) with System.gc(), I've been told it's a bad practice to call System.gc() manually, but the ...
62
votes
11answers
4k views
Understanding the meaning of the term and the concept - RAII (Resource Acquisition is Initialization)
Another question I thought for sure would have been asked before, but I don't see it in the "Related Questions" list.
Could you C++ developers please give us a good description of what RAII is, why ...
59
votes
12answers
23k views
Java G1 garbage collection in production
Since Java 7 is going to use the new G1 garbage collection by default is Java going to be able to handle an order of magnitude larger heap without supposed "devastating" GC pause times? Has anybody ...
58
votes
7answers
4k views
Does Haskell require a garbage collector?
I'm curious as to why Haskell implementations use a GC.
I can't think of a case where GC would be necessary in a pure language. Is it just an optimization to reduce copying, or is it actually ...
58
votes
4answers
21k views
When should I use GC.SuppressFinalize()?
In .NET, under which circumstances should I use GC.SuppressFinalize()?
What advantage(s) does using this method give me?
57
votes
2answers
17k views
Is it necessary to explicitly remove event handlers in C#
I have a class that offers up a few events. That class is declared globally but not instanced upon that global declaration--it's instanced on an as-needed basis in the methods that need it.
Each ...
57
votes
9answers
2k views
To GC or Not To GC
I've recently seen two really nice and educating languages talks:
This first one by Herb Sutter, presents all the nice and cool features of C++0x, why C++'s future seems brighter than ever, and how ...
56
votes
12answers
4k views
Since .NET has a garbage collector why do we need finalizers/destructors/dispose-pattern?
If I understand correctly the .net runtime will always clean up after me. So if I create new objects and I stop referencing them in my code, the runtime will clean up those objects and free the memory ...
55
votes
14answers
57k views
Best Practice for Forcing Garbage Collection in C#
In my experience it seems that most people will tell you that it is unwise to force a garbage collection but in some cases where you are working with large objects that don't always get collected in ...
53
votes
13answers
2k views
Should “Dispose” only be used for types containing unmanaged resources?
I was having a discussion with a colleague recently about the value of Dispose and types that implement IDisposable.
I think there is value in implementing IDisposable for types that should clean up ...
49
votes
8answers
39k views
Stack,Static and Heap in C++
I've searched, but I've not understood very well these three concepts. When do I have to use dynamic allocation (in the heap) and what's its real advantage? What are the problems of static and stack? ...
49
votes
18answers
16k views
What's so wrong about using GC.Collect()?
Although I do understand the serious implications of playing with this function (or at least that's what I think), I fail to see why it's becoming one of these things that respectable programmers ...
48
votes
5answers
33k views
Java heap terminology: young, old and permanent generations?
I'm trying to understand how the concepts of young, old and permanent generations in the Java heap terminology, and more specifically the interactions between the three generations.
My questions are:
...
47
votes
13answers
19k views
When is it acceptable to call GC.Collect?
The general advise is that you should not call GC.Collect from your code, but what are the exceptions to this rule?
I can only think of a few very specific cases where it may make sense to force a ...
47
votes
10answers
8k views
What makes Ruby slow?
Ruby is slow at certain things. But what parts of it are the most problematic?
How much does the garbage collector affect performance? I know I've had times when running the garbage collector alone ...
44
votes
7answers
4k views
Which loop has better performance? Why?
String s = "";
for(i=0;i<....){
s = some Assignment;
}
or
for(i=0;i<..){
String s = some Assignment;
}
I don't need to use 's' outside the loop ever again.
The first option is ...
40
votes
3answers
17k views
What do GC_FOR_MALLOC, GC_EXPLICIT, and other GC_* mean in Android Logcat?
If you see the Android logs, you may see a lot of those things.
What do they mean, knowing those may help us doing better memory allocations.
Example:
28470 dalvikvm D ...
40
votes
13answers
13k views
Java very large heap sizes
Does anyone have experience with using very large heaps, 12 GB or higher in Java?
Does the GC make the program unusable?
What GC params do you use?
Which JVM, Sun or BEA would be better suited for ...
40
votes
9answers
6k views
Garbage collection Libraries in C++
What free and commercial garbage collection libraries are available for C++, and what are the pros and cons of each?
I am interested in hard-won lessons from actual use in the field, not marketing or ...
36
votes
16answers
30k views
Memory Leak in C#
Is it ever possible in a managed system to leak memory when you make sure that all handles, things that implement IDispose are disposed?
Would there be cases where some variables are left out?
36
votes
14answers
18k views
Does using final for variables in Java improve garbage collection?
Today my colleagues and me have a discussion about the usage of the final keyword in Java to improve the garbage collection.
For example, if you write a method like:
public Double doCalc(final ...
35
votes
17answers
34k views
System.gc() in Java
I know that garbage collection is automated in Java. But I understood that if you write System.gc() in your code the Java VM may or may not decide at runtime to do a garbage collection at that point. ...
35
votes
6answers
13k views
Does setting Java objects to null do anything anymore?
I was browsing some old books and found a copy of "Practical Java" by Peter Hagger. In the performance section, there is a recommendation to set object references to null when no longer needed.
In ...
35
votes
1answer
779 views
How to gain control of a 5GB heap in Haskell?
Currently I'm experimenting with a little Haskell web-server written in Snap that loads and makes available to the client a lot of data. And I have a very, very hard time gaining control over the ...
35
votes
3answers
2k views
Caching reflection data
What's the best way to cache expensive data obtained from reflection? For example most fast serializers cache such information so they don't need to reflect every time they encounter the same type ...
34
votes
4answers
8k views
How to skip “Loose Object” popup when running 'git gui'
When I run 'git gui' I get a popup that says
This repository currently has approximately 1500 loose objects.
It then suggests compressing the database. I've done this before, and it reduces the ...
34
votes
1answer
56k views
GC overhead limit exceeded
What is the sampling time JVM uses to throw 'java.lang.OutOfMemoryError : GC overhead limit exceeded'?
I know you can control 98% and 2% with parameters GCTimeLimit and GCHeapFreeLimit but whats the ...
34
votes
5answers
18k views
Java 7 (JDK 7) garbage collection and documentation
Java 7 has been out for a while now, but I cannot find any good resources on the configuration of the garbage collectors, specifically the new G1 collector.
My questions:
Is G1 the default collector ...
33
votes
3answers
45k views
Java Garbage Collection Log messages
I have configured java to dump garbage collection information into the logs (verbose GC). I am unsure of what the garbage collection entries in the logs mean. A sample of these entries are posted ...
33
votes
6answers
8k views
Trying to track down a memory leak / garbage-collection problem in Java
This is a problem I have been trying to track down for a couple months now. I have a java app running in that processes xml feeds and stores the result in a database. This has been giving intermittent ...
32
votes
14answers
6k views
Garbage Collection in C++ — why?
I keep hearing people complaining that C++ doesn't have garbage collection. I also hear that the C++ Standards Committee is looking at adding it to the language. I'm afraid I just don't see the point ...
31
votes
3answers
3k views
Very High Memory Usage in .NET 4.0
I have a C# Windows Service that I recently moved from .NET 3.5 to .NET 4.0. No other code changes were made.
When running on 3.5, memory utilzation for a given work load was roughly 1.5 GB of memory ...
30
votes
5answers
4k views
.Net vs Java Garbage Collector
Does anyone know the major differences between the Java and .Net garbage collectors? A web search has not revealed much, and it was a question that came up in a test.
30
votes
15answers
4k views
Does it help GC to null local variables in Java
I was 'forced' to add myLocalVar = null; statement into finally clause just before leaving method. Reason is to help GC. I was told I will get SMS's during night when server crashes next time, so I ...
30
votes
11answers
38k views
Know of any Java garbage collection log analysis tools?
I'm looking for a tool or a script that will take the console log from my web app, parse out the garbage collection information and display it in a meaningful way.
I'm starting up on a Sun Java 1.4.2 ...
29
votes
4answers
1k views
GC.Collect() and Finalize
Ok, it's known that GC implicitly calls Finalize methods on objects when it identifies that object as garbage. But what happens if I do a GC.Collect()? Are the finalizers still executed? A stupid ...
29
votes
9answers
2k views
How do I get .NET to garbage collect aggressively?
I have an application that is used in image processing, and I find myself typically allocating arrays in the 4000x4000 ushort size, as well as the occasional float and the like. Currently, the .NET ...
29
votes
2answers
2k views
Cost of using weak references in Java
Has anyone researched the runtime costs involved in creating and garbage collecting Java WeakReference objects? Are there any performance issues (e.g. contention) for multi-threaded applications?
...
28
votes
8answers
1k views
Is the stack garbage collected in Java?
The heap memory is garbage collected in Java.
Is the stack garbage collected as well?
How is stack memory reclaimed?

