Re: [nodejs] Re: Here's your Node.js performance tip of the week - how garbage collection works and how to monitor it

2014-06-28 Thread Ben Noordhuis
On Fri, Jun 27, 2014 at 1:17 PM, Zlatko Đurić zladu...@gmail.com wrote: Where can one look for this code, write barriers and stuff? (I guess curiosity is getting the better out of me, or however the saying goes.) I'm afraid it's scattered all over deps/v8/src. Grep around for 'WriteBarrier'

Re: [nodejs] Re: Here's your Node.js performance tip of the week - how garbage collection works and how to monitor it

2014-06-27 Thread Zlatko Đurić
Where can one look for this code, write barriers and stuff? (I guess curiosity is getting the better out of me, or however the saying goes.) 2014-06-27 13:15 GMT+02:00 Zlatko Đurić zladu...@gmail.com: So that means that 'I guess that translates to create as many small local scoped vars as you

[nodejs] Re: Here's your Node.js performance tip of the week - how garbage collection works and how to monitor it

2014-06-26 Thread zladuric
Hi Shubhra, Very nice, detailed article. It explains the standard GC methods that the V8 uses. I've also skimmed What I'd like to add is a little bit of wisdom I've picked up at the MLOC-JS.com conference in Budapest this February. Ben Titzer from Google Chrome division was explaining a

[nodejs] Re: Here's your Node.js performance tip of the week - how garbage collection works and how to monitor it

2014-06-26 Thread Norman Paniagua
Thanks for sharing.. I take a look at the post -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because

Re: [nodejs] Re: Here's your Node.js performance tip of the week - how garbage collection works and how to monitor it

2014-06-26 Thread Ben Noordhuis
On Thu, Jun 26, 2014 at 12:08 PM, zladuric zladu...@gmail.com wrote: What I'd like to add is a little bit of wisdom I've picked up at the MLOC-JS.com conference in Budapest this February. Ben Titzer from Google Chrome division was explaining a little bit of this, how does GC work in V8, and