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

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"

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