Skip to content

Instantly share code, notes, and snippets.

@a2ikm
Created November 17, 2016 17:44
Show Gist options
  • Select an option

  • Save a2ikm/2196fd8c0972c6c17cbbe040e0e46eaa to your computer and use it in GitHub Desktop.

Select an option

Save a2ikm/2196fd8c0972c6c17cbbe040e0e46eaa to your computer and use it in GitHub Desktop.
require "objspace"
def memsize(model)
model.all.inject(0) { |s, record| s + record.instance_variables.sum { |iv| ObjectSpace.memsize_of(record.instance_variable_get(iv)) } }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment