You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use rbkit to profile the following code. It runs with ruby 2.2.0. After running for 1min, rbkit shows RES size is ~100MB, while top shows the RES is about 13MB.
I use rbkit to profile the following code. It runs with ruby 2.2.0. After running for 1min, rbkit shows RES size is ~100MB, while
top
shows the RES is about 13MB.require 'rbkit'
require 'timeout'
Rbkit.start_server
100000.times do
timeout(3) {
puts 'hello mem!'.freeze
sleep(2)
}
end
So what is the RES size in rbkit? How can I get the same value of
top
result?The text was updated successfully, but these errors were encountered: