Created
November 17, 2016 17:44
-
-
Save a2ikm/2196fd8c0972c6c17cbbe040e0e46eaa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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