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

Preventing Garbage Collection In The Spidermonkey Javascript Engine

According the Spidermonkey's User Guide https://developer.mozilla.org/En/SpiderMonkey/JSAPI_Use… Read more Preventing Garbage Collection In The Spidermonkey Javascript Engine

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

Spidermonkey And Garbage Collection

I am embedding Spidermonkey in my C++ application. I need to implementing some custom Javascript f… Read more Spidermonkey And Garbage Collection

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 - Garbage Collector Timers?

Any idea on garbage collector timer in javascript? Suppose i run below script, will function and as… Read more Javascript - Garbage Collector Timers?

Does Es6 Const Affect Garbage Collection?

In Kyle Simpson's new title, You don't know JS: ES6 and beyond, I find the following snippe… Read more Does Es6 Const Affect Garbage Collection?

Javascript Nested Function Performance

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

Are Stores Created In The Initcomponent Function Memory Leaks Once The Component Is Destroyed Or Will These Stores Be Garbage Collected?

This is a question that surged from this other one: Best practice to have the same view and store m… Read more Are Stores Created In The Initcomponent Function Memory Leaks Once The Component Is Destroyed Or Will These Stores Be Garbage Collected?