Tagged Questions
13
votes
0answers
313 views
concurrent garbage collection for a c++ graph data structure
I have a directed graph data structure used for audio signal processing (see http://audulus.com if you're curious).
I would like graph edges to be strong references, so in the absence of cycles, ...
1
vote
3answers
43 views
Can objects make each other 'undeletable' by referencing each other?
So lets say there are two classes:
public class A {
B reference = new B(this) //B isn't garbage collected because A references it
}
public class B {
A reference // A isn't garbage collected ...
1
vote
2answers
29 views
Should classed that use huge amounts of memory impmlement System.IDisposable
Suppose I have created a class that causes objects to use huge amounts of memory, but no unmanaged resources:
class TestMemory
{
public int[] intarray = new int[1000000];
}
Normally if I create ...
0
votes
0answers
13 views
When should I recycle my Bitmap's of my custom View?
Is there any method like onDestroy() in Views, where I can be sure of that the view is disposed, and so can call recycle() on the Bitmap I use in it (Custom code, with private Bitmap)?
1
vote
1answer
47 views
How to read a verbose:GC output?
70.222: [GC [PSYoungGen: 131072K->15437K(152896K)] 131072K->15509K(502464K), 0.0228420 secs] [Times: user=0.09 sys=0.01, real=0.02 secs]
1
vote
0answers
39 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
1answer
74 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.
...
3
votes
1answer
112 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 ...
-1
votes
1answer
73 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 ...
5
votes
3answers
97 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 ...
2
votes
1answer
122 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 --trace-gc ...
0
votes
2answers
67 views
Java Heaps and GC on Multi-Processor machines?
How does Java deal with GC and Heap Allocation on multi-processor machines?
In the reading I've done, there doesn't seem to be any difference in the algorithms used between single and multi-processor ...
1
vote
1answer
85 views
When unset() should really be used?
I'm curious about using of unset() language construct just about everywhere, where I took memory or declare some variables (regardless of structure).
I mean, when somebody declares variable, when ...
2
votes
1answer
19 views
Registering to 'GCAllocationTick_V1' CLR event from C#
I'm trying to add some profiling capabilities to a server application.
I have found 'GCAllocationTick_V1' event and I would like to monitor it and react to it in code. Unfortunately, I couldn't find ...
1
vote
1answer
76 views
Why is memory usage increasing in this python code?
I'm sure this is a naive question about python and garbage collection.
I have a function that creates a large data structure in memory, and then returns an integer.
I expected that after calling the ...
1
vote
1answer
65 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 ...
4
votes
5answers
124 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
1answer
23 views
Python objects returned more than once by gc.get_referents()
I'm using gc module (Python 2.7.3 on Ubuntu 12.10) to analyze object references.
Starting with the following code:
a = [1,2,3]
b = [1,2,3,4,5]
print(gc.get_referents(a,b))
Obtaining the result:
...
1
vote
2answers
54 views
GC settings for single threaded application
Single thread eliminates a lot of complications involved in multithreaded application.
I was wondering if there are garbage collector configurations which can take advantage of single threaded ...
4
votes
1answer
106 views
Java GC tuning for strings
Profiling the application I figured out that there are a lot of strings on heap.
In my situation, strings are created on heap and not interned and they are not literals.
Are there are specific GC ...
2
votes
3answers
74 views
Statistics of young and tenured generation memory in java
Is there any way in Java we can get access to the current state of memory like, how much of tenured memory or young generation memory is used currently by the JVM.
Doing a ...
1
vote
1answer
45 views
Why there are many page fault during full GC
It is Window 2003 server.
We are running some performance test, and what we see is:
In first 5 hours, the page fault/sec is very small, like 10 or 20
In the last 1 hour, the page fault jumps to 500 ...
0
votes
2answers
104 views
Improving .Net memory speed and efficiency [closed]
I have a service, that I query once in a very long while, and i would like to "streamline", or improve the efficiency, of its memory allocation.
Most of the time it just sits and waits, and once in ...
8
votes
2answers
126 views
python efficiency and large objects in memory
i have a multiple processes each dealing with lists that have 40000 tuples. this nearly maxes the memory available on the machine. if i do this:
while len(collection) > 0:
row ...
0
votes
1answer
127 views
Geocoder - GC_CONCURRENT FREED
I have just started my first main project - a simple anti-theft application, that when my the phone is been text-ed, if it contains a certain string, it will send a sms back to the originating ...
2
votes
1answer
83 views
What are the key factors or good practices that reduce the garbage collection time in Java?
What are the key factors or good practices that reduce the garbage collection time in Java ?
All I know is increasing RAM could be one trick .
What are all the other features which effect it.
0
votes
3answers
84 views
Android do i need to set each object to null when done using it?
I have this object I've created which holds references to some other objects:
public class ListHandler {
private AppVariables app; //AppVariables instance
private Extra extra; //the extra ...
3
votes
3answers
91 views
c# detect when there are too many objects
I have a c# app in which the user does some business stuff by working with a wpf treeview, using drag&drop. The Undo stack offers some user functionality to roll back everything from the start, ...
0
votes
1answer
169 views
Heavy GC in Android while displaying animated .gif
In my Game i use Animated gif ( the standart movie decoder from android did not work for me), but this Code worked perfectly on all Android versions i testet so far:
here is the decoder:
import ...
0
votes
1answer
74 views
Prevent Fragment recovery in Android
We are using Fragments and we don't need them to be automatically recovered when the Activity is recreated.
But Android every time when Activity::onCreate(Bundle savedInstanceState) -> ...
0
votes
0answers
56 views
Is gc tuning required on java with following result of GC Logs [closed]
I am using Java java version "1.6.0_24"
OpenJDK Runtime Environment (IcedTea6 1.11.3)
OpenJDK 64-Bit Server VM (build 20.0-b12, mixed mode)
with following settings on tomcat 7 server :
-Xms3072M
...
10
votes
2answers
316 views
Memory leak when using strings < 128KB in Python?
Original title: Memory leak opening files < 128KB in Python?
Original question
I see what I think is a memory leak when running my Python script. Here is my script:
import sys
import time
...
0
votes
3answers
86 views
Lists garbage collection
If I do the following:
List2 = [V || V <- List1, ...]
It seems that the List2 refers to the List1 and erlang:garbage_collect() doesn't clear memory. How is it possible to create a new list ...
2
votes
1answer
100 views
Why does unmanaged code increments memory to a specific limit?
I work with a flow control system written in. NET, the system inter-acts with external systems through TCP connections and routes transactions between different endpoints.
My problem:
At startup / ...
6
votes
2answers
131 views
When should I avoid using `seq` in Clojure?
In this SO thread, I learned that keeping a reference to a seq on a large collection will prevent the entire collection from being garbage-collected.
First, that thread is from 2009. Is this still ...
1
vote
2answers
56 views
Why this MSDN guidance?
On this msdn page, it says
The fewer objects allocated on the heap, the less work the garbage collector has to do. When you allocate objects, do not use rounded-up values that exceed your needs, ...
0
votes
0answers
89 views
Too many YGC in short period of time?
We are monitoring the gc and below is snapshot
Timestamp S0 S1 E O P YGC YGCT FGC FGCT GCT
1118019.5 78.57 0.00 81.28 95.76 80.30 13078 ...
1
vote
1answer
45 views
How many survivors can table-based Mark & Compact handle?
The Mark & Compact algorithm, when using an in-heap break table for relocation, is said to require only constant space overhead. This seems quite obvious: It uses free space to store the break ...
-4
votes
2answers
214 views
Is GC working properly? [duplicate]
Possible Duplicate:
.NET garbage collection not working properly here?
I've tested the following code.
when the button is clicked, objects are created and add them to the list. When ...
3
votes
3answers
278 views
Android app memory heap keeps growing
I've been getting random ( out of memory ) crashes in my app so I started to analyze my heap. I noticed that if I go from Activity A to Activity B, the heap increases ( due to lazy loading many images ...
2
votes
1answer
105 views
(AS3) Does setting variables to private help garbage collection?
Novice programmer here.
I'm currently coding a simple game with the title screen and the main game loop in separate "keyframes" (this is in CS6). Once I transition from the title screen to the game ...
7
votes
2answers
120 views
Why does PHP's garbage collector slow down perfomance, and how to manage memory without it?
This relates to a PHP 5.3 Cli application that processes a lot of data in a complex way, taking hours to run. Someone discovered that turning off garbage collection made it run a great deal faster ...
4
votes
2answers
209 views
Can I check heap usage of a running JVM from the commandline?
Can I check heap usage of a running JVM from the commandline, I mean the actual usage rather than the max amount allocated with Xmx.
I need it to be commandline because I don't have access to a ...
1
vote
2answers
81 views
Can values be stored without allocating memory?
I have been reading here
https://developer.mozilla.org/en-US/docs/JavaScript/Memory_Management#Allocation_via_function_calls
and these lines confused me a bit:
var s = "azerty";
var s2 = ...
0
votes
5answers
127 views
Memory Management for local objects in java
If I have a method inside a class and I am creating an object inside that method
then would that object be destroyed and the memory allocated to it released
once the method is finished?
eg. -
public ...
0
votes
1answer
141 views
How to build a Garbage Collector?
I'm working in Flash, and attempting to use the new "domain memory" available in Flash Player. This essentially lets you work with memory at a low level, but you have to manage the memory yourself, ...
2
votes
3answers
87 views
Garbage collector in c for variables inside a loop
I am mainly a Java person recently working on some projects involving C so please bear with me if it's a basic C question.
So inside my main I have a while loop and I declare a variable each ...
1
vote
1answer
67 views
JavaScript patterns and garbage collection
I've been using two versions of a JavaScript pattern for a while that I picked up from Addy Osmani called the module pattern. view it here
The first version of this pattern uses an object literal:
...
1
vote
1answer
200 views
Why isn't the AS3 garbage collector picking this up?
I started running into serious issues with the garbage collector partially picking this up, but still leaving most of the object up and running in the background without a reference:
m_win = new ...
-4
votes
1answer
117 views
What is the difference between garbage collector and ARC? [duplicate]
Possible Duplicate:
What is the difference between Objective-C automatic reference counting and garbage collection?
Can someone please tell me that, what is the basic difference between ...


