Skip to content Skip to sidebar Skip to footer
Showing posts with the label 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

Rxjs - Do I Need To Unsubscribe

If I have something like this: class MyComponent { constructor() { this.interval = Observba… Read more Rxjs - Do I Need To Unsubscribe

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

Are Webgl Objects Garbage Collected?

In JavaScript memory that I allocated (e.g. an ArrayBuffer) gets freed up when I don't have any… Read more Are Webgl Objects Garbage Collected?

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 Does V8 Handle Objects In "large Object Space"

I've read in V8 wiki that there's large object space in heap which is not moved by GC. Lar… Read more How Does V8 Handle Objects In "large Object Space"

Phonegap Garbage Collection

I had a long discussion with my friend about PhoneGap. He said that PhoneGap has no garbage collect… Read more Phonegap Garbage Collection

Over How Much Of Its Enclosing Scope Does A (javascript) Closure Close?

When I have some function that uses variables from its enclosing scope(s) and use that function out… Read more Over How Much Of Its Enclosing Scope Does A (javascript) Closure Close?

GC Crashes QML-Application

Do not fear! This is not production code. It is just to learn new things about QML! I do not seek … Read more GC Crashes QML-Application