1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/script/heap_dump.rb
2015-10-14 16:33:36 +01:00

7 lines
162 B
Ruby

Thread.new do
require "objspace"
ObjectSpace.trace_object_allocations_start
GC.start()
ObjectSpace.dump_all(output: File.open("heap.json", "w"))
end.join