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.
2
votes
1answer
75 views
Unloading a classloader
my final goal is to be able to reload classes after they have been already loaded to the JVM.
After reading the following answer Unloading classes in java? , I have been trying to implement my ...
2
votes
1answer
28 views
profiling the jvm where most garbage is generated and what type it has, escape analysis optimization
I know that my program invokes the gc in regular intelvals, but I would like to analyse only the generated garbage. I want to know which classes are most frequently abandoned, and much more important, ...
1
vote
0answers
36 views
Does “Debug Diagnostics Tool” Full Dump cause garbage collection or restart process?
So I have a series of ASP.net web apps which are each assigned their own AppPool
This results in several instances of w3wp.exe residing in memory.
I've been trying to figure out why a couple of them ...
8
votes
1answer
172 views
Garbage collector tuning in Ruby 2.0
I was wondering if the GC tuning used for ruby 1.9.x is still relevant in 2.0 with the new implementation of the GC. If so, are there any new things that we can configure on the new version?
I am ...
0
votes
0answers
33 views
Qt and JavaScript Garbage Collection
I am looking for a way to call the JavaScript garbage collector from within QWebFrame. I have searched the Qt Docs and have found the QWebFrame::addToJavaScriptWindowObject method. I think this may be ...
0
votes
1answer
47 views
Strange behavior of JAVAGC
i have the following code :
public class MyOjbect {
public Integer z = 111;
@Override
protected void finalize() throws Throwable {
System.out.println("invoking GC in MyOjbect");
...
1
vote
3answers
45 views
WeakHashMap Randomly clears
I am running a game, when I start up I load images into a WeakHashMap of Images. When I run my game, my RAM just keeps going up, then eventually my WeakHashMaps just unload all of their data. Is this ...
5
votes
1answer
52 views
How do I prevent memory leak when I load large pickle files in a for loop?
I have 50 pickle files that are 0.5 GB each.
Each pickle file is comprised of a list of custom class objects.
I have no trouble loading the files individually using
the following function:
def ...
7
votes
2answers
98 views
Getting an advance warning before full GC
For the context of a soft real time system that should not pause for more than 200ms, We're looking for a way to have an advance warning before a Full GC is imminent. We realize we might not be able ...
0
votes
1answer
47 views
Is it possible to resize a generic object pool?
I'm working with a real-time application on an ARM device. Performance is important, so I use a generic ObjectPool class.
Up to now I would pre-allocate the pool to the maximum size I could ...
0
votes
1answer
78 views
Copying an Array/List without triggering GC
I am manually copying a smaller array into a larger array:
T is constrained to class, new()
Why does this trigger the GC? Is the assignment to the new array not by reference? Why are the old ...
1
vote
1answer
45 views
Java GC strange behaviour or memory leak?
I am working on a Swing application and recently, I started to see the following problem:
I have to display in a separate window a very large job report. I close this window, then I re-open the same ...
2
votes
2answers
91 views
How do I handle an object moving in memory in the middle of a method?
I'm writing a VM in C++ for a programming language. The language is garbage collected, so I have instances of C++ classes that are allocated in the garbage collected heap. I'm using a copying ...
2
votes
1answer
102 views
How do I create a memory leak in JavaScript?
I would like to understand what kind of code causes memory leaks in JavaScript and created the script below. However, when I run the script in Safari 6.0.4 on OS X the memory consumption shown in the ...
3
votes
2answers
65 views
garbage collect objects after lazy values have been calculated
in my current project I am processing a quite big amount of data and the processing of the data should be both memory efficient and computationally performant.
Every item has some meta-data that can ...
1
vote
1answer
32 views
ListViewAdapter - when listeners, attached to view are collected?
I am using Custom ListViewAdapter for displaying, well, a list.
Each row in the list has 3 buttons, i.e. listeners attached.
But I am finding it very disturbing, that during each scroll the new ...
3
votes
2answers
91 views
not using garbage collector in Scheme/Lisp implementation
For my class project, I have to implement a (simple) Scheme compiler.
At this point I am brainstorming how I'd implement various features.
Why typical Scheme implementations bother with a ...
2
votes
2answers
117 views
garbage collector calls in during rendering a simple screen (libgdx)
I was testing my almost finished game (created with libgdx) for garbage collection.
I ran my desktop version with verbose gc and only 2mb heap VM options.
I was sort of worried to notice that gc ...
14
votes
2answers
177 views
C# and .Net Garbage collector performance
I am trying to make a game in C# and .Net and I was planning to implement messages that update the game objects in the game world. These messages would be C# reference objects.
I want this approach ...
1
vote
1answer
70 views
How to view the content of a garbage collection?
Is there any way to view the content of what is being garbaged?
Basically I'd to be able to see, when I have a GC spike, ok 1200 objects of such and such type have been collected, so maybe I can ...
0
votes
2answers
68 views
How many objects are eligible for gc [closed]
Can You please explain this answer..? As I expected answer C
Given:
11. class Snoochy {
12. Boochy booch;
13. public Snoochy() { booch = new Boochy(this); }
14. }
15.
16. class Boochy {
17. ...
-1
votes
0answers
32 views
Are GC unreferenced objects still in managed heap?
I'm confused about the relationship between GC heap and Managed heap in .NET. Why sometimes .NET application has different managed heap size and GC heap size? Are GC unreferenced objects still in ...
1
vote
1answer
52 views
Do I win memory by explicitly disposing imageView.Image?
I have this code in my app:
var newImage = // ...
if (imageView.Image != null && imageView.Image != newImage)
imageView.Image.Dispose ();
imageView.Image = newImage;
I have three ...
-2
votes
0answers
152 views
Android - Why GC_CONCURRENT?
Why garbage collector stop my task?
I have a mainactivity that call a service to do in background a jdt.compile of a .java file.
Why logcat flood gc_concurrent and the .java doesn't compile?
04-24 ...
2
votes
1answer
130 views
Monodroid: Performing a full GC
I try to create my small particle system. I have ParticleManager with list of Particles and draw my particles on canvas. I create any new objects like Paint and etc once just in init() function! If ...
2
votes
2answers
37 views
what is tomcat default GC option?
in catalina.sh I set JAVA_OPTS like this.
JAVA_OPTS="-server -Xms2048m -Xmx2048m"
in this case what is default GC option?
I think default option is serial GC.(-XX:+UseSerialGC)
thanks.
-1
votes
1answer
44 views
android (apache harmony) garbage collection
The Sun JDK has a java.lang.ref.Finalizer class, which is used during garbage collection. In Apache Harmony, the standard library that Android is based on, does not have the class.
My question is: ...
0
votes
0answers
41 views
How can I delete objects from memory in JavaScript?
I am using EaselJS and Box2DWeb to create an arrow shooting game. Every time an arrow collides with another body, it dies, and I call this function:
if(body.dead){
removeActor(body.GetUserData()) ...
1
vote
2answers
61 views
JVM SafePointStatistics - Can anyone help interpret it
On enabling the +XX:PrintSafePointStatistics , I see a dump on the stdout in the following format. Can anyone please help me interpret the column names or the JVM guide which explains this properly? ...
1
vote
1answer
69 views
set gc verbose log from weblogic admin console
How set
-XX:PrintGCDetails
that is garbage collection verbose log using weblogic admin console. Instead of using command prompt. i can set it up by using command prompt but my application want to use ...
0
votes
0answers
12 views
How do I increase the time that verbosegc logs for in tomcat? [closed]
Garbage collection logging is currently enabled within my tomcat environment; however, it only logs for the last 5 days. How can I increase this amount?
0
votes
0answers
134 views
Android NDK returning C++ pointer works on emulator but not device
So im trying to keep na instance of a C++ class between my NDK calls, i.e. the new NetPoco pointer does not work, below.
Everything works fine in the simulator but on devices it seems to get caught ...
4
votes
5answers
118 views
Is it faster to drop and recreate an array, or fill it with zeroes, and why?
Let's say I create an array intended to emulate processor memory:
byte[] mem = new byte[0xF00];
This array is used over the course of the emulation operation, and will eventually (read: with ...
0
votes
2answers
56 views
AS3: object declared within function, listener within object…do they both get GC?
Evening y'all,
I normally have no need to ask as there is a plethora of info, but this I cannot find -at least, not specifically.
Here's the gist: I'm declaring an object inside a function, then ...
0
votes
0answers
42 views
Android: Reduce time spent in garabage collection
I am having problems with my openGL audio visualizer falling behind the music. I recently changed to a mulithreaded approach. Everything works great on Samsung S3, but on HTC Evo the audio visualizer ...
0
votes
2answers
347 views
Wait for concurrent GC blocked
When I run my application on emulator the Logcat is showing this:
04-22 16:21:30.685: D/dalvikvm(967): GC_CONCURRENT freed 1545K, 20% free 7019K/8720K, paused 78ms+17ms, total 360ms
04-22 ...
0
votes
1answer
43 views
java heap size grows by portions up to some limit
I am writing a simple server application in Java, and I'm making some benchmarks using Apache benchmark now.
Right after the start the resident memory used by server is about 40M. I make the series ...
2
votes
1answer
31 views
Do I need to stop the stopwatch if the enclosing method is about to return?
Consider the following method:
DoTimeIntensiveOperation()
{
var t = new Stopwatch();
foreach(var element in a_very_long_array)
{
DoATimeConsumingTask(element);
}
...
4
votes
1answer
112 views
Different Garbage Collection behavior between Console Application and Unit Test Method
I have stumbled across a situation where garbage collection seems to be behaving differently between the same code running written as a Unit Test vs written in the Main method of a Console ...
3
votes
2answers
90 views
Young generation is tiny despite NewRatio=2
At some point my application starts to create a lot of temporary arrays, this is expected behaviour, and I want to give a lot of space to Young Generation, so temporary arrays don't get promoted to ...
0
votes
1answer
38 views
Object Management in String Pool ofJava
Hi i am working in java and want to know how String objects are created in the String pool
and how they are managed.
So in the following example i am creating two Strings s and s1,so can anyone ...
3
votes
2answers
88 views
Detecting garbage in a Unit Test
I wanted to detect whether or not my code generates garbage. So I created the following unit test.
[TestClass]
public class AllocationTest
{
int[] generationCollections = new int[3];
...
0
votes
1answer
83 views
Speed up garbage collection in lapply
What's the fastest way to do garbage collection in a lapply function or loop? What seems obvious to me slows things down enormously. Am I doing it wrong? Is there a quicker way?
x <- 1:10000
...
-8
votes
2answers
58 views
Why do I get java.lang.OutOfMemory Error? [closed]
I have a server that handles requests via a socket and spawns a thread to handle each request.
Why do I get a java.lang.OutOfMemoryError and what can I do to fix it?
0
votes
1answer
48 views
How Can I Tell If JMeter Needs More Heap To Produce “Correct” Results?
This is a theoretical question that just occurred to me.
Normally when running an JMeter load test, I find the default heap settings are adequate.
Sometimes when running an intensive JMeter load ...
5
votes
3answers
121 views
Can the OS stop a Java process from garbage collecting?
I'm monitoring a production system with AppDynamics and we just had the system slow to a crawl and almost freeze up. Just prior to this event, AppDynamics is showing all GC activity (minor and major ...
3
votes
1answer
120 views
Java garbage collection and young generation size
I have recently been having performance difficulties where my Java webapp running on tomcat will hang for short periods resulting in backlogs of traffic which can make the webapp unavailable for ...
2
votes
2answers
121 views
Cleaning up memory after reading a giant xml element value
I rarely turn here for help, but this is driving me crazy: I'm reading an xml file that wraps an arbitrary number of items, each with a b64-encoded file (and some accompanying metadata for it). ...
8
votes
1answer
262 views
Are MakeGenericType / generic types garbage collected?
It is well known in .NET that types are not garbage collected, which means that if you're playing around with f.ex. Reflection.Emit, you have to be careful to unload AppDomains and so on... At least ...
0
votes
0answers
82 views
What happens when we set Xmx and Xms equal size
When we set the values of Xms and Xmx to be equal, what is the impact on the FullGC, or allocation for young/ tenured gen in HotSpot.
Does it make any difference in JRockit?



