Skip to content

Instantly share code, notes, and snippets.

@djo
Created December 5, 2012 11:50
Show Gist options
  • Save djo/4214965 to your computer and use it in GitHub Desktop.
Save djo/4214965 to your computer and use it in GitHub Desktop.
GC tuning

See the current amount of free and used memory in the system:

free -m

What actual time we have (in the console):

time = Benchmark.measure do
  app.get '/needed-page'
end
puts time

Play with GC options (REE):

RUBY_HEAP_MIN_SLOTS=600000
RUBY_GC_MALLOC_LIMIT=59000000
RUBY_HEAP_FREE_MIN=100000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment