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.
1
vote
3answers
37 views
When does WeakReference#get() start returning null?
I want to use WeakReferences as part of an (android) bitmap-cache to be able to check when a bitmap isn't used anymore.
My cache has a maximum-size that is smaller than the Java heap-space. When a ...
1
vote
0answers
5 views
Transparent huge pages disabled but compact_stall is not null
We noticed large JVM pauses during garbage collection where user and system times are much smaller than the total time. [Times: user=3.99 sys=0.55, real=34.29 secs] We suspected it could be due to ...
0
votes
2answers
23 views
How the sun.reflect.GeneratedSerializationConstructorAccessor class generated
In order to print the GC logs of a web application,Before the tomcat startup,add the following parameters:
-Xms256m
-Xmx512m
-XX:PermSize=128M
-XX:MaxPermSize=512M
-Xloggc:D:/TomcatGc.log
...
0
votes
0answers
42 views
Memory leak issue in small java program
We are using the below code to verify our email address, but when we enter a long email address to test it, the CPU utilization goes 100% and program keeps on running, can you identify the issue.
...
0
votes
0answers
26 views
Android Eclipse DDMS > Heap > Cause GC greyed out
I'm unable to click the Cause GC button in the Heap tab under the DDMS Perspective in Eclipse because it is greyed out.
I'm using ADT v22 (the Eclipse/Android/ADT package) on OS X. Device I'm using ...
0
votes
2answers
34 views
Running AppFabric on a server with 128gb RAM - Latency and Garbage Collection
I'm looking at the viability of using AppFabric as a data cache for our our data. Our data is:
accessed 4 million times a day
updated 50k times a day.
searched 500k times a day.
It houses around ...
1
vote
0answers
21 views
Glassfish Server JVM Tunning [migrated]
I need to setup a Oracle Glassfish Server and after some research I came up with a configuration that I would like to propose. Any suggestions and/or corrections are very welcome.
My Hardware/OS ...
0
votes
1answer
24 views
Rspec Tests take highly variable amounts of time
I started along the process of trying to speed up my tests, mostly by following this railscast's suggestions. So you don't have to watch it, those are:
Replaced "bundle exec spec" with "bin/rspec ...
2
votes
2answers
38 views
why jvm full gc need stop-the-world
I was asked this question,and I just answered "because jvm need to move object " later I googled and seams didn't find reasonable answer,anyone may help? thanks~
-8
votes
0answers
105 views
Why the malloc in c# is unsafe? [closed]
Why use the "malloc" method in C# is unsafe? Okay, the garbage collector manage the memory for me, but it is sure that is the best method to do that?
2
votes
6answers
74 views
When are Java temporary files deleted?
Suppose I create a temporary file in Java with the method
File tmp = File.createTempFile(prefix, suffix);
If I do not explicity call the delete() method, when will the file be deleted?
As an ...
3
votes
1answer
71 views
Why/How does returning a “locally instantiated array” work in Java?
The following code snippet seems to work for me exactly as I want:
public CharSequence[] getAllCities() {
String selectQuery = "select " + COLUMN_CITY + " from " + TABLE_NAME;
SQLiteDatabase db ...
2
votes
1answer
63 views
Do C++ objects in Android JNI native code invoke garbage collection?
So, I've got a conceptual question. I've been working with JNI on Android for the purposes of doing low-level audio "stuff." I've done plenty of audio coding in C/C++, so I figured that this would ...
2
votes
1answer
146 views
(Nearly) all garbage collections are full collections
I have been collecting performance counters for a managed application over roughly four days. During that time, there have been the following garbage collections:
Generation 0: 133,695
Generation 1: ...
2
votes
3answers
78 views
java full gc taking too long
I have a Java client which consumes a large amount of data from a server. If the client does not keep up with the data stream at a fast enough rate, the server disconnects the socket connection. My ...
-1
votes
1answer
19 views
Request : Analyse GC Offline using Tool
For some strong reason, I do NOT have access to our JVM based Web - App servers when running LIVE Production and only way is the task of Monitoring the Activity Offline Only.
Hence I or ...
1
vote
2answers
101 views
Using D for a realtime application?
I am considering using d for my ongoing graphics engine. The one thing that turns me down is the GC.
I am still a young programmer and I probably have a lot of misconceptions about GC's and I hope ...
1
vote
4answers
65 views
Memory management scope in C/C++
When freeing memory in C and C++, do I only need the memory address or does it require any specific variable?
So if I were to do something such as:
int* test()
{
int* x = new int(5);
return ...
1
vote
0answers
15 views
Correct usage of DeleteLocalRef in JNI
Here is the sample jni method where I create a string and return it to the calling java method:
jstring
Java_com_example_hellojni_HelloJni_stringFromJNI( JNIEnv* env,
...
1
vote
1answer
27 views
Does the .NET Garbage Collector's stop-the-world effect halt or delay the execution of unmanaged threads and timer callbacks?
I have an application that needs to have code executed at very precise intervals. For that purpose I also need Windows' scheduler resolution increased to 1ms via timeBeginPeriod.
To do that, I have a ...
-1
votes
3answers
71 views
Object eligible for the garbage collector [duplicate]
Given:
interface Animal {
void makeNoise();
}
class Horse implements Animal {
Long weight = 1200L;
public void makeNoise() {
System.out.println("whinny");
}
}
public ...
0
votes
4answers
52 views
Java garbage collection in Queue dequeue() sample code
I was going through the code of the implementation of a Queue in a course on algorithms and observed the code for dequeue() which the author used:
private Node first, last;
private class Node {
...
4
votes
1answer
66 views
Stop and copy garbage collector in two phases
When implementing a stop and copy garbage collector as a pair, I need two memory banks (the old one and a free new one). One memory bank consists of the-cars and the-cdrs. So basicly when I make a new ...
2
votes
0answers
49 views
how long can a String survive in the literal pool [duplicate]
In the following SCJP Mock Exam question, students are asked to find the exact line that String b of the line marked (0) will be a candidate for Garbage Collection.
public class Q76a9 {
static ...
0
votes
2answers
42 views
java.exe process uses more memory and does not free it up
I have a java application which when in idle state before any complex executions, uses 23 MB in Heap and the java.exe process size in TaskManager was around 194 MB. After some complex operations, the ...
0
votes
0answers
33 views
+100
What's the size of Garbage Collector implementations in common VMs and what can be learned from it?
Looking at Java/OpenJDK, it seems that every “new” garbage collection implementation is roughly one magnitude larger than the preceding one.
What are the sizes of Garbage Collector implementations in ...
0
votes
1answer
89 views
Garbage Collector won't free memory of some objects
I have these methods:
public void GetImage(JObject o)
{
var imageFile = o["file"].ToString();
if (!File.Exists(imageFile))
{
SendMessage("File does not exist");
return;
...
2
votes
1answer
87 views
Python program eating up RAM
I wrote a small program to collect data over serial port using MinimalModbus. The data is dumped into a CSV file. I have read several posts on SO and other places. A few things mentioned are:
Using ...
0
votes
1answer
33 views
Python: find which objects are marked for deletion by gc?
Let's say that I get following output from gc.get_count()
gc.get_count()
(2, 1, 0)
What I want to know is that which are these three objects that gc.get_count() is counting? Can I get their id? ...
0
votes
1answer
32 views
Custom JavaScript garbage collector
I don't want to create a wheel from scratch. But I am curious if there were JavaScript library named gc.js what would it looks like? How can I write custom garbage collector for JavaScript in ...
2
votes
1answer
45 views
Python: cracking the gc enigma
I am trying to understand gc because I have got a large list in a program which I need to delete to free up some badly needed memory. The basic question I want to answer is how can I find what is ...
-1
votes
1answer
57 views
incremental garbage collection simulation using c++ [closed]
i have a project that requires me to simulate increamental garbage collection. This uses the generational algorithm combined with mark and sweep method. So far i have designed a structure as shown in ...
1
vote
2answers
46 views
Are PHP Closure Objects eligible for garbage collection
I was wondering if anyone knows if PHP's anonymous functions are eligible for garbage collection?
I know that functions created with create_function are not garbage collected but I haven't been able ...
1
vote
1answer
44 views
What is the difference between running git gc with no options vs the --auto option?
I was looking through the man pages to find what the default behavior of git gc is when no options are passed and couldn't find anything immediately. I originally was under the assumption that the ...
0
votes
0answers
16 views
Does the GCRoot issue with AS3 garbage collection affect objects local to functions?
This is something I ran into several months ago:
Why isn't the AS3 garbage collector picking this up?
GCRoots and possibly a couple of other things can cause some pretty crippling issues with ...
0
votes
0answers
13 views
How can you identify GCRoots in AS3/Flex?
Several months ago I ran into some pretty crippling issues with AS3's garbage collector just not doing its job, even when it was running, and this thread had to do with that:
Why isn't the AS3 ...
2
votes
3answers
102 views
Is Java GC Deterministic
I am running multiple runs of the same scenario on a Java product with same JVM arguments. Every run gives a different GC behavior both in terms of its duration and its 'start time'. Is this expected?
...
0
votes
3answers
81 views
Force removing object from memory
How can i delete object even it has references(c# or Java)?
For example:
void Main()
{
var f = new Foo();
var person = f.GetPerson();
}
public class Foo
{
private object _person;
...
0
votes
0answers
13 views
Eclipse memory use is unbounded when rendering Android views
I'm building an Android app and I need to preview the layout visual designs.
Some of these include custom views. The extent of the customization is limited to overriding onMeasure(...) in some cases ...
1
vote
3answers
30 views
System.gc does not clears in a single run. Uses 3 or more calls for clearing
I am testing the usage of Heap size in a java application running in JDK 1.6. I use the tool VisualVM to monitor the heap usage. I found the Maximum heap size usage of around 500 MB for a few mins. I ...
5
votes
2answers
72 views
Creating big amount of Sitecore Items causes memory leak
I have a Sitecore application where I need to create a large number of Sitecore items in a loop from another system. Below is my testing purpose loop;
using (new ...
3
votes
4answers
68 views
Does Java GC destroy objects if instance variables still have reference?
I've read through some of the Java garbage collection guides online, but I'm still a bit unclear and wanted to make sure so that I don't have memory leaks in my code.
Does Java GC collect objects ...
9
votes
5answers
252 views
.NET 4.5 Async/Await and the Garbage Collector
I am wondering about the behavior of async/await in relation to garbage collecting local variables. In the following example, I have allocated a sizable portion of memory and go into a significant ...
2
votes
2answers
75 views
Garbage collection of circular referenced object
Lets say I have 2 objects - object A and object B. Object A references Object B and object B references Object A.
If Both Object A & Object B are out of ref of the code - how does Garbage ...
9
votes
2answers
85 views
Does increasing the number of available cores and RAM cause the JVM to perform more GCs?
I'm upgrading production hardware, and we're seeing far more young-gen GCing on the new set of kit compared to the old.
The same program is running (identical binaries) on both machines. One obvious ...
1
vote
0answers
21 views
Pivot Viewer V2 doesn't release memory after being set to null
In our LOB app, We have 4 pivot viewers on separate pages in a navigation control. When we navigate from one pivot viewer to another the memory increases (as expected).
This memory continues to ...
2
votes
1answer
40 views
Configuring v8's memory management to be smart for a node.js process
We run an XMPP server on node.js, on a machine with around 3.8 GB RAM. Here are the command line parameters we pass while invoking node :
/opt/node/bin/node --max-old-space-size=3000 ...
-1
votes
1answer
41 views
Garbage collection of Tasks in .Net
This may be a silly question, but I couldn't find an answer by myself so far.
I have a C#/.Net application which creates Task objects to perform parts of its work. If any exception are raising I log ...
1
vote
0answers
60 views
String.valueOf(Double) in a tight loop makes a ton of garbage
I've got a function that gets called every few milliseconds that needs to convert a double to a character array, string, or other method of storing text. It's immediately written to the screen using ...
2
votes
1answer
36 views
Memory leak / Python windows 7 screenshots
I have tried the following Python code on a dual monitor system (Windows7) to repeatedly save screenshots.
It generates 33 shots of 14.6MB (total 482MB) and then crash. Checking with Process Explorer ...





