GC.stat â Hash
Class Public methods
Returns a Hash containing information about the GC.
The hash includes information about internal statistics about GC such as:
1 2 3 4 5 6 7 8 9 10 11 | { :count => 0 , :heap_used => 12 , :heap_length => 12 , :heap_increment => 0 , :heap_live_num => 7539 , :heap_free_num => 88 , :heap_final_num => 0 , :total_allocated_object => 7630 , :total_freed_object => 88 } |
The contents of the hash are implementation specific and may be changed in the future.
This method is only expected to work on C Ruby.
Please login to continue.