Visualizing Your Ruby Heap
28-Sep-2017 3146
Objects are allocated in to a page. Each page is 2 ^ 14th bytes. In other words, Ruby objects aren’t allocated one at a time, but the GC allocates one page (also known as an “arena”), and when a new Ruby object is requested, it is placed inside that page.
Visualizing Your Ruby Heap #ruby #rubydeveloper #rubyonrails #Visualizing https://rubyonrails.ba/link/visualizing-your-ruby-heap