I wanted to find out the memory consumed (in bytes) by data types. I called size
method on an integer. Since I am running a 64 bit machine, it returned 8.
1.size # => 8
Similarly, for strings and arrays, it returned 1 byte per character/integer.
'a'.size # => 1
['a'].size # => 1
['a', 1].size # => 2
- Why is there no size method for float?
- Shouldn't heterogeneous arrays like
['a', 1]
return1 + 8 = 9 bytes
(1 for char, 8 for integer)? - Is it correct to call
size
to check memory allocated to ruby data types?
I think you are looking for MRI memory usage. Ruby has
ObjectSpace
: The objspace library extends the ObjectSpace module and adds several methods to get internal statistic information about object/memory management.Here is what you will get:
Note: Generally, you SHOULD NOT use this library if you do not know about the MRI implementation. Mainly, this library is for (memory) profiler developers and MRI developers who need to know about MRI memory usage.