Tagged Questions

Garbage collection (GC) is a form of automatic memory management. It is a special case of resource management, in which the limited resource being managed is memory. The garbage collector, or just collector, attempts to reclaim garbage, or memory occupied by objects that are no longer in use by the program.

learn more… | top users | synonyms (2)

65
votes
4answers
62k 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 ...
63
votes
13answers
9k 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, ...
61
votes
7answers
22k 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?
60
votes
10answers
18k 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 ...
55
votes
7answers
2k 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() ...
50
votes
3answers
4k 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 ...
48
votes
8answers
1k 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 ...
46
votes
12answers
3k 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 ...
44
votes
5answers
10k 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 ...
40
votes
12answers
10k 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?
40
votes
11answers
3k views

Please help us non-C++ developers understand what RAII is

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 ...
39
votes
9answers
4k 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 ...
39
votes
5answers
31k 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 ...
36
votes
9answers
10k 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 ...
36
votes
2answers
10k 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 ...
33
votes
1answer
609 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 ...
33
votes
10answers
5k 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 ...
33
votes
9answers
3k views

Garbage collectors for 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 ...
32
votes
3answers
735 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 ...
30
votes
14answers
8k 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 ...
30
votes
7answers
3k 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 ...
25
votes
4answers
9k 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
25
votes
15answers
3k 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 ...
25
votes
8answers
19k 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? ...
24
votes
17answers
14k 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?
24
votes
14answers
9k 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 ...
24
votes
13answers
22k 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 ...
24
votes
12answers
5k 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 ...
23
votes
3answers
695 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 code which blows up ...
23
votes
10answers
22k 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 ...
23
votes
11answers
2k views

How to get a CS paper published when not in academia?

I've implemented a newer GC algorithm and thought my findings could help. What should I do? Publish a blog? Do my best to write a paper and/or just start submitting abstracts to journals? I don't ...
23
votes
13answers
4k 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 ...
23
votes
3answers
2k views

Practical use of System.WeakReference

I understand what System.WeakReference does, but what I can't seem to grasp is a practical example of what it might be useful for. The class itself seems to me to be, well, a hack. It seems to me ...
22
votes
2answers
351 views

How are closures and scopes represented at run time in JavaScript

This is mostly an out-of-curiosity question. Consider the following functions var closure ; function f0() { var x = new BigObject() ; var y = 0 ; closure = function(){ return 7; } ; } ...
22
votes
2answers
1k views

Chrome fails to free memory, garbage collection doesn't occur as expected (Mootools/MochaUI library)

Background: I'm currently working on an intranet site that makes use of the MochaUI library (working from the virtual desktop demo). I'm using Mootools 1.2.4 and MochaUI 0.9.7. The windows that are ...
22
votes
8answers
1k 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 ...
22
votes
8answers
579 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?
22
votes
8answers
2k views

Can memory be cleaned up?

I am working in Delphi 5 (with FastMM installed) on a Win32 project, and have recently been trying to drastically reduce the memory usage in this application. So far, I have cut the usage nearly in ...
22
votes
6answers
4k 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 ...
22
votes
14answers
14k 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. ...
21
votes
3answers
575 views

What are the fundamental differences between garbage collection in C# and Java?

I had some very wrong sounding advice recently from a "senior" developer/coworker regaurding the C# garbage collector such as... "You need to use destructors everywhere in C# because the garbage ...
21
votes
6answers
949 views

Java Interview Question: finalize() method

I was given the following phrase in an interview: The invocation of an Object's finalize() method is the last thing that happens before an object is garbaged collected. I had to answer by: ...
21
votes
5answers
2k views

Relative Performance of Java's Garbage First (G1) Garbage Collector?

Does anyone know of any performance benchmarks of Java's new Garbage First (G1) Garbage Collector (as compared to the "old" GCs)? In terms of GC pause times, Sun states that G1 is sometimes better ...
21
votes
1answer
2k views

How does heap compaction work quickly?

They say that compacting garbage collectors are faster than traditional memory management because they only have to collect live objects, and by rearranging them in memory so everything's in one ...
21
votes
5answers
2k views

Mixing Erlang and Haskell

If you've bought into the functional programming paradigm, the chances are that you like both Erlang and Haskell. Both have purely functional cores and other goodness such as lightweight threads that ...
21
votes
9answers
5k views

Why Java and Python garbage collection methods are different?

Python uses reference count method to handle object life time. So an object has no more used and it will be immediately destroyed. But, in Java, GC(garbage collector) destroys objects which are no ...
20
votes
2answers
546 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 ...
20
votes
2answers
4k views

GHC's RTS options for garbage collection

I have a Haskell program which processes a text file and builds a Map (with several million elements). The whole thing can run for 2-3 minutes. I found that tweaking the -H and -A options makes a big ...
20
votes
11answers
5k views

Does assigning objects to null in Java impact garbage collection?

Does assigning an unused object to null in Java improve the garbage collection process in any measurable way? My experience with Java (and C#) has taught me that is often counter intuitive to try and ...
19
votes
3answers
329 views

Is G1GC still not officially production ready?

I wonder what the official status of the "garbage first" (G1) collector in the JDK 7 release is. I would like to use G1 as a low pause gc alternative to CMS, but only if I can really trust on its ...

1 2 3 4 5 47