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

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?

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

Javascript Nested Function Performance

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

Requestanimationframe Garbage Collection

I'm profiling the following code's memory usage using the Timeline in Chrome Dev Tools v27.… Read more Requestanimationframe 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?

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

Do Local Variables Inside Of A Loop Get Garbage Collected?

I'm wondering if it is more efficient to place any vars referenced within a loop, outside of th… Read more Do Local Variables Inside Of A Loop Get Garbage Collected?

Which Modern Browsers Use Mark And Sweep Algorithm For Garbage Collection?

While going through garbage collection, I came across Reference Counting and Mark & Sweep GC Al… Read more Which Modern Browsers Use Mark And Sweep Algorithm For Garbage Collection?