I was referring to https://github.com/v8/v8/tree/bleeding_edge
On Friday 25 May 2012 at 17:14, Jorge wrote: > On May 25, 2012, at 4:58 PM, Arnout Kazemier wrote: > > > I would rather say, have you tested it agains the latest version of v8.. > > It's the latest v8: <https://github.com/v8/v8/tree/3.9> > > $ node -e 'console.log(process.versions)' > { node: '0.6.6', > v8: '3.9.24.29', > ares: '1.7.5-DEV', > uv: '0.6', > openssl: '0.9.8l' } > > > $ time node -e '(function() { var i=1e7; while(i--); })()' > > real 0m0.092s > user 0m0.077s > sys 0m0.012s > > $ time jsc -e '(function() { var i=1e7; while(i--); })()' > > real 0m0.044s > user 0m0.036s > sys 0m0.007s > > $ time node -e 'i=1e7; while(i--);' > > real 0m1.950s > user 0m1.936s > sys 0m0.017s > > $ time jsc -e 'i=1e7; while(i--);' > > real 0m0.049s > user 0m0.042s > sys 0m0.007s > > -- > Jorge. > > -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to [email protected] > (mailto:[email protected]) > To unsubscribe from this group, send email to > [email protected] > (mailto:[email protected]) > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > > -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
