thlorenz / v8-perf

⏱️ Notes and resources related to v8 and thus Node.js performance
2.2k stars 112 forks source link

Add info about memory profiling #7

Closed thlorenz closed 6 years ago

thlorenz commented 9 years ago

blogs/tutorials

Mainly related to analyzing memory heap dumps (i.e. not time line) since that is the only memory related data that can be gathered from a Node.js app (afaik).

Unfortunately most of these are out of date :( but still useful.

paulirish commented 9 years ago

http://jayconrod.com/posts/55/a-tour-of-v8-garbage-collection edit: Ah you've included this already

paulirish commented 9 years ago

http://strongloop.com/strongblog/node-js-performance-garbage-collection/

thlorenz commented 9 years ago

The performance garbage collection one is more to the gc topic, so I'll add it there as a resource. I think the tour of v8 gc is listed as a resource there already (as you noticed).

Thanks and keep'em coming :)