Re: [v8-users] Get a break down of objects that were garbage collected.

2013-06-11 Thread Daniel Clifford
There is no direct way to get statistics about the objects are that are collected, but you may be able to infer this information by looking at the delta between live object counts between two GCs. You can track live object counts by passing the --track_gc_object_stats flag to V8, which records tota

[v8-users] Get a break down of objects that were garbage collected.

2013-06-10 Thread dpapad
Is there a way to get stats about how many instances of a specific Javascript class are being garbage collected? --trace-gc does not provide that much details. Specifically there is a specific Javascript class that is instantiated multiple times in my app. I want to verify that this could be th