Class: ActiveSupport::Testing::Performance::Metrics::Memory

Inherits:
DigitalInformationUnit show all
Defined in:
activesupport/lib/active_support/testing/performance/ruby.rb,
activesupport/lib/active_support/testing/performance/jruby.rb,
activesupport/lib/active_support/testing/performance/ruby/mri.rb,
activesupport/lib/active_support/testing/performance/rubinius.rb,
activesupport/lib/active_support/testing/performance/ruby/yarv.rb

Constant Summary collapse

Mode =
RubyProf::MEMORY

Constants included from ActionView::Helpers::NumberHelper

ActionView::Helpers::NumberHelper::DECIMAL_UNITS, ActionView::Helpers::NumberHelper::DEFAULT_CURRENCY_VALUES, ActionView::Helpers::NumberHelper::STORAGE_UNITS

Instance Attribute Summary

Attributes inherited from Base

#loopback, #total

Instance Method Summary collapse

Methods inherited from DigitalInformationUnit

#format

Methods inherited from Base

#benchmark, #initialize, #measure_mode, #name, #profile

Methods included from ActionView::Helpers::NumberHelper

#number_to_currency, #number_to_human, #number_to_human_size, #number_to_percentage, #number_to_phone, #number_with_delimiter, #number_with_precision

Constructor Details

This class inherits a constructor from ActiveSupport::Testing::Performance::Metrics::Base

Instance Method Details

#measureObject



96
97
98
# File 'activesupport/lib/active_support/testing/performance/jruby.rb', line 96

def measure
  ManagementFactory.memory_mx_bean.non_heap_memory_usage.used + ManagementFactory.memory_mx_bean.heap_memory_usage.used
end