Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 227 Bytes

enable-garbage-collector-profiler.md

File metadata and controls

15 lines (9 loc) · 227 Bytes

Enable garbage collector profiler

GC::Profiler.enable

10.times do
  array = Array.new(1_000_000) { |i| i.to_s }
end

puts GC::Profiler.result

View Source