Show HN: Ruby Heap Viz – An interactive Ruby object graph visualization (github.com) 51 points by mattbaker 11y ago ↗ HN
[–] tsamb 11y ago ↗ I've seen this in action a couple of times and it is awesome. This is a fantastic way to demo the heap to people who have had some experience in Ruby, but only a touch of compsci fundamentals.
[–] tcopeland 11y ago ↗ To stress your browser, open viz.html and in irb do: module Example ; class Foo ; def bar ; end ; end ; end 100.times { Example::Foo.new ; sleep 1 } [–] pit 11y ago ↗ And then, to save yourself: GC.start
[–] decentrality 11y ago ↗ Any known results with actor-based scenarios, such as with Celluloid?Those situations tend to be infinitely recursive, but would be priceless to map visually.
4 comments
[ 2.5 ms ] story [ 22.6 ms ] threadThose situations tend to be infinitely recursive, but would be priceless to map visually.