Finding memory allocation of Ruby Arrays

3.4k Views Asked by At

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
  1. Why is there no size method for float?
  2. Shouldn't heterogeneous arrays like ['a', 1] return 1 + 8 = 9 bytes (1 for char, 8 for integer)?
  3. Is it correct to call size to check memory allocated to ruby data types?
3

There are 3 best solutions below

3
On

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.

You need to require 'objspace' to use this extension module.

Here is what you will get:

 > require 'objspace'
 => true 
 > ObjectSpace.memsize_of(Array)
 => 5096 
 > ObjectSpace.memsize_of(Hash)
 => 3304 
 > ObjectSpace.memsize_of(String)
 => 6344 
 > ObjectSpace.memsize_of(Integer)
 => 1768 

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.

0
On

These are two different methods that serves different purpose for two different data types.

In eg 1, you are applying size to fixnum. This method:

Returns the number of bytes in the machine representation of fix.

source: http://www.ruby-doc.org/core-2.2.0/Fixnum.html#method-i-size

However when used with array, size is alias for length. Here: http://www.ruby-doc.org/core-2.1.2/Array.html#method-i-size. Which:

Returns the number of elements in self. May be zero.
0
On

Array#size returns the count of elements of the Array rather than memory allocated.