Tagged Questions
The garbage tag has no wiki summary.
11
votes
3answers
96 views
PHP Garbage Collection clarification
From the PHP manual, session.gc_probability and session.gc_divisor state that gc will occur based on this probability. I get that.
What I'm not clear on is whether this probability is on a session by ...
5
votes
3answers
217 views
C# Does Lambda => generate garbage?
Does using a lambda expression generate garbage for the GC opposed to the normal foreach loop?
// Lambda version
Foos.ForEach(f=>f.Update(gameTime));
// Normal approach:
foreach (Foo f in Foos)
{
...
5
votes
6answers
461 views
AS3 - when does the garbage collector run?
apologies if this is a dupe; i couldn't find it.
i've read and understood grant skinner's blog on the AS3 garbage collector -
http://www.adobe.ca/devnet/flashplayer/articles/garbage_collection.html ,
...
4
votes
2answers
132 views
C++ garbage collection and circularly referenced data
I'm currently implementing my garbage collector (in C++) using reference counting technique. However, there's a major problem is that if the data is circularly referenced, they're never collected ...
4
votes
3answers
81 views
Quick Java garbage collection question
I am writing an alarm app in Android, and I have the following:
ArrayList<PendingIntent> pendingIntents = new ArrayList<PendingIntent>();
public PendingIntent setAlarm(long time) {
...
3
votes
1answer
52 views
Java, Hibernate, CascadeTypes and 'garbage collecting' Orphans
What kind of cascade type can I use, and where, to have Hibernate automatically remove the Image when there are no more "Things" referring to it? (so sort of Garbagecollecting in Hibernate, basically)
...
3
votes
4answers
136 views
Garbage collection overload, Java
The problem is that some how due to garbage collection timings I am having tradeoff's in my performance. The issue can be generalized as:
public void loop(BlockingQueue<Runnable> queue)
{
...
3
votes
3answers
329 views
C# Application performance deterioration due to garbage collection?
My application's performance deteriorate as it continues to run through the day.
I suspect it is garbage collector, how can I verify this?
Is there a way to find out which object/function is causing ...
3
votes
5answers
1k views
How do you Force Garbage Collection from the Shell?
So I am looking at a heap with jmap on a remote box and I want to force garbage collection on it. How do you do this without popping into jvisualvm or jconsole and friends?
I know you shouldn't be in ...
3
votes
1answer
143 views
Getting a value by reflection without garbage
I am writing a system which requires me to fetch the values of properties in an object, preferably using reflection. This project is for the xbox360, which runs on the compact framework and thus has a ...
2
votes
1answer
44 views
Garbage collection - root nodes
I have recently read bits and pieces about garbage collection (mostly in Java) and one question still remains unanswered: how does a JVM (or runtime system in general) keeps track of CURRENTLY live ...
2
votes
2answers
96 views
Relation between type safety and practicality of garbage collection
What are the feature of C Programming language that break the type-safety and prohibits practical garbage collection from being added to the language? Explain.
Firstly, I don't understand the ...
2
votes
1answer
368 views
What's The Difference Between Java GC Log Lines? (“Total time for which…” vs “[GC”)
Java Version: 1.6.0_20
I'm seeing the following in my logs, and I'm trying to figure out the difference beween the first line and the subsequent lines. As far as I know, they are both minor GC ...
2
votes
1answer
233 views
PHP generated Excel file is different when downloaded
I have a PHP file that generates xls files using the module found at http://pear.php.net/package/Spreadsheet_Excel_Writer/
I can create the sample document just fine and when I open it, it looks ...
1
vote
8answers
86 views
Java Memory Leaks
I'm creating a service that will run constantly, each day at a specified time it will run the main body of the program.
Essentially:
while(true){
run();
Thread.sleep(day);
}
After a while, I'm ...
1
vote
1answer
27 views
How to clean garbage fom begining of string stl string c++
im reading simple string from file but when i see in the variable value i keep see garbage
how can i clean it ?
string line;
ifstream fp_in; // declarations of streams fp_in and fp_out
...
1
vote
2answers
111 views
C Struct read/ write garbage value to file
I am diving into C after long time and struggling with reading and writing struct to the simple text file. I debuged this prog and I found out its reading and writing garbage value to the file. Can ...
1
vote
3answers
57 views
Application arraylist clears
I have an application which has several screens. Lets say A B C D and D might open some external application as well.
All this activities share data, an arraylist with one another and I have created ...
1
vote
1answer
212 views
WP7 - Xaml Pages and Peak Memory problem
I have a problem with 90mb peak memory limit issue.
For example: I create 1 Panorama Application(with default content) and add 3 PivotPages or 6 Portrait Page(Page A and Page B.. with blank content). ...
1
vote
2answers
142 views
1
vote
1answer
222 views
Any way to lower Python memory footprint?
i'm developing a python 2.6 (tested both on 2.6.5 and 2.6.6) application which is going to run as a daemon on my VPS.
During some tests, i've found out that the app itself it's consuming (during its ...
1
vote
1answer
62 views
garbage collection for specific circumstances
I'm working with just the basics of garbage collection and the different algorithms of each (plus pro's con's etc..). I'm trying to determine that best garbage collection algorithm to use for ...
1
vote
1answer
719 views
String manipulation in Linux kernel module
I am having a hard time in manipulating strings while writing module for linux. My problem is that I have a int Array[10] with different values in it. I need to produce a string to be able send to the ...
1
vote
6answers
441 views
.NET Garbage Collection behavior (with DataTable obj)
I am wondering why after creating a very simple DataTable and then setting it to null does the Garbage Collection not clear out all the memory used by that DataTable. Here is an example. The variable ...
1
vote
4answers
108 views
Garbage Collection on objects not assigned to a variable
I am working on project that uses this pattern
var businessEntity = new DAL().GetObject(id);
// do something with the business entity.
Has anyone followed this pattern?
Does this cause any memory ...
1
vote
1answer
360 views
Garbage in Eclipse console log
I have a problem with logs display in my eclipse console. The japanese characters displayed in starting and stopping the weblogic server are garbage. There is no problem however with the logs written ...
1
vote
3answers
188 views
Mechanism of the Boehm Weiser Garbage Collector
I was reading the paper "Garbage Collector in an Uncooperative Environment" and wondering how hard it would be to implement it. The paper describes a need to collect all addresses from the processor ...
1
vote
2answers
201 views
solving default garbage values in c
If we declare a variable in c programming as integer without defining value then printf prints some garbage value from buffer. Is there any method to prevent printing the garbage value?
I want to ...
1
vote
5answers
790 views
how to get rid off garbage in array of chars?
I'm writing a C program but I keep having problems with my array of chars. I keep getting garbage when I print it using prinf. here is an example of what I get when I print it:
char at t.symbol is ...
1
vote
5answers
220 views
std::map inizialitazion (only one time)
I have a function that translates data using std::map
struct HistoParameter
{
int nbins;
float first;
float last;
HistoParameter(int _nbins, int _first, int _last) :
nbins(_nbins), ...
1
vote
3answers
178 views
Different outputs after debugging and compiling C++ programs
I'm running CodeBlocks on the MingW compiler in an XP virtual machine. I wrote in some simple code, accessible at cl1p , which answers the algorithm question at CodeChef (Well it only answers it ...
1
vote
2answers
609 views
Lost references in Lua
Having a problem with objects, not needed any more but still having references.
Result: size of allocated memory is constantly growing due to not collected objects.
How to solve this sort of problem?
...
1
vote
2answers
113 views
Does lock allocate
I read somewhere, although I can't remember where, that using the lock keyword in C# can allocate.
I know that trying to lock a ValueType will box the valuetype, but are there any other situations?
...
1
vote
1answer
471 views
Qt: Is is possible to get the QScriptEngine from QWebFrame?
I need to get access to the javascript QScriptEngine in a QWebFrame. Is that possible?
Well, at least I think I need access to it. In response to a javascript call I need to allocate a new object, ...
0
votes
3answers
67 views
JCombobox memory leaking even if not referenced at all?
Maybe some of you can help me solving a very strange issue with java and JComboboxes. I tried several hours to trace down the problem but I cant find a solution. I don't want to paste a huge code ...
0
votes
0answers
27 views
Web page hangs up on unload
I have a DOM-heavy webpage using various third-party GUI elements created using Yahoo User Interface (YUI) and DHTMLX. When the page is refreshed, or when tried to navigate to a different page, I find ...
0
votes
1answer
108 views
Flume collector example from Cloudera's UserGuide does not work as expected
The bit in the UserGuide that shows you how to setup a collector and write to it http://archive.cloudera.com/cdh/3/flume/UserGuide/index.html#_tiering_flume_nodes_agents_and_collectors has this ...
0
votes
1answer
83 views
lua_newthread is stopping
I'm working with in LUA's thread and I'm using lua_newthread for this in my code must perform the same function n times.
To work with the competition's thread instantiate some threads in C + + and ...
0
votes
0answers
22 views
IE does not shows Arabic chars
The following program is looking up an Arabic word in a dictionary.
The real program runs on all browsers except IE.
The small example below can be run on Chrome - if invoked with ...
0
votes
1answer
33 views
Recursively delete small files PHP script
How to recursively delete small files, smaller than 10 kilobytes regardless on their creation time, format or name?
PHP script needs to go through cache folder and all sub folders and delete files ...
0
votes
0answers
67 views
jboss. new gc.log after each restart
I force jboss to write gc log by this parameters: -verbose:gc -Xloggc:gc.log –XX:+PrintGCDetails -XX:+PrintGCDateStamps.
After each jboss restart gc.log file is overrided. How to save all log file?
...
0
votes
2answers
52 views
Language without explicit memory alloc/dealloc AND without garbage collection
I was wondering if it is possible to create a programming language without explicit memory allocation/deallocation (like C, C++ ...) AND without garbage collection (like Java, C#...) by doing a full ...
0
votes
4answers
88 views
Object ready for Garbage collection, Java
From http://java.sun.com/docs/books/performance/1st_edition/html/JPAppGC.fm.html#99740 example A3.3 says, it says that an object might still not be available for garbage collection even though it ...
0
votes
2answers
19 views
derstroy an instance via “del module_x”
I created my own module "MyServer" which have the function ".connect()".
When I have connected to my server
import MyServer
con = MyServer.connect(...)
and I delete my module ("del MyServer") I ...
0
votes
3answers
162 views
Android Garbage Collector and ArrayLists
Hey all, I'm having a problem with the Android Garbage Collector and was hoping someone could point out what I may be doing wrong here. I have a lot of data at the start of my program that is ...
0
votes
1answer
150 views
Using Threads in android games
I've been reading stuff about android game development and performance optimization.
And i have two questions:
Supose i have a game, and in that game i use one thread for drawing stuff on a canvas. ...
0
votes
6answers
374 views
Remove unused allocated Memory from HashMaps
I want to read some XML-files and convert it to a graph (no graphics, just a model). But because the files are very large (2,2 GB) my model object, which holds all the information, becomes even larger ...
0
votes
4answers
152 views
What Is Parent Thread Of Daemon Thread Garbage Collector?
The garbage collector is a daemon thread which is invoked and controlled by the JVM. Does it have a parent thread? I am a little bit confused by this..
0
votes
2answers
31 views
Nulling objects passed as parameters, garbage collection?
If I create a new object:
var objA:Object = new Object;
and then I pass it into an instance of a class:
var objB:Class = new B(objA);
and this is my destroy function inside of class B:
public ...
0
votes
2answers
220 views
Removing event listeners for local variables?
Do you have to remove event listeners on variables with local scope? By this I mean...does the event listener still exist if the variable only exists as long as the function/method is running?
...