1
vote
5answers
128 views
Java references
Is there any way to find all references to an object (in Java)?
I have a cache of objects, and would like to periodically scan it to see if removing the object will cause it to be destroyed.
0
votes
1answer
32 views
Storing a lua class in luabind::object
Using C++, lua 5.1, luabind 0.7-0.81
Trying to create a lua class and store it in a luabind::object.
Lua
class 'TestClass'
function TestClass:__init()
end
C++
luabind::object obj = …
3
votes
3answers
53 views
What does “garbage collection rate” mean, and what benefit it could provide?
In analyzing Java GC behavior, some tools has the metric "garbage collection rate" (an example would be in figure 19. from http://www.ibm.com/developerworks/java/library/j-ibmtools2/#fig19) of which …
1
vote
1answer
49 views
Problem with luabind::object dereferencing (simplified)
Using C++, lua5.1, luabind 0.7
Lua code:
-- allocates near 8Mb of memory
function fff()
local t = {}
for i = 1, 300000 do
table.insert(t, i)
end
return t
end
C++ code:
{
…
2
votes
8answers
240 views
Programatically invoke garbage collector
Is there a way to invoke the garbage collector on a specific object within managed memory from an application?
e.g. (in pseudo-code)
Read myString from file;
perform arbitrary operation on myString;
…
9
votes
3answers
289 views
What does Python’s GIL have to do with the garbage collector?
I just saw this section of Unladen Swallow's documentation come up on Hacker News. Basically, it's the Google engineers saying that they're not optimistic about removing the GIL. However, it seems …
6
votes
4answers
118 views
Are spinlocks a good choice for a memory allocator?
I've suggested to the maintainers of the D programming language runtime a few times that the memory allocator/garbage collector should use spinlocks instead of regular OS critical sections. This …
4
votes
8answers
184 views
Garbage Collection in Java and Circular References
From my understanding, garbage collection in java cleans up some object iff nothing else is 'pointing' to that object. My question is, what happens if we have something like:
class Node{
public …
1
vote
2answers
62 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?
…
0
votes
3answers
67 views
Garbage Collector
i want to know the internal architecture and function of the garbage collector in dotnet in detail.. can anybody help me.
1
vote
2answers
22 views
Garbage Collection when Attached dependencyobject is destroyed \ disconnected
Hi Guys,
When we use any attached property against any dependency object, I thunk it actually maps the property and the value with the dependency object.
E.g. <DockPanel><TextBlock …
3
votes
6answers
131 views
Why don’t managed languages offer the ability to manually delete objects?
Lets say you want to write a high performance method which processes a large data set.
Why shouldn't developers have the ability to turn on manual memory management instead of being forced to move to …
0
votes
4answers
97 views
Is it possible to change the priority of garbage Collector thread?
Java garbage collector runs with priority 1, due to which it is not guaranteed that System.gc() will actually execute if called.
Is there any way to change its priority? This shall enable me to run …
1
vote
1answer
35 views
Why does AppDomain.Unload() error in finalizer?
Here's some sample code:
using System;
namespace UnloadFromFinalizer
{
class Program
{
static void Main(string[] args)
{
Program p = new Program();
}
…
4
votes
16answers
314 views
Assigning “null” to objects in every application after their use
Do you always assign null to an object after its scope has been reached?
Or do you rely on the JVM for garbage collection?
Do you do it for all sort of applications regardless of their length?
If …
