Skip to content Skip to sidebar Skip to footer
Showing posts with the label Garbage Collection

Node.js Global Variable Property Is Purged

my problem is not about 'memory leakage', but about 'memory purge' of node.js (expr… Read more Node.js Global Variable Property Is Purged

How Do I Explicitly Release A Javascript Object From Within The Object?

I'm using John Resig's recipe for JavaScript 'classes' and inheritance. I've st… Read more How Do I Explicitly Release A Javascript Object From Within The Object?

Javascript Closures Concerning Unreferenced Variables

I'm aware of the great posts on Closures here and here, but neither seems to address the partic… Read more Javascript Closures Concerning Unreferenced Variables

How Can I Log What Is Being Garbage Collected In My Javascript Code?

I've built an application that wastes 40% of its time collecting garbage, and I'm at my wit… Read more How Can I Log What Is Being Garbage Collected In My Javascript Code?

Javascript Memory Leak From Closure Lexical Environment

I am trying to understand why the following code causes a memory leak Here is the timeline showin… Read more Javascript Memory Leak From Closure Lexical Environment

Javascript Nested Function Performance

I have some nested functions such as var freak = function() { var die = function() { ... } … Read more Javascript Nested Function Performance