Last active
August 29, 2015 14:03
-
-
Save thilo/e1d27980af3618ea1b78 to your computer and use it in GitHub Desktop.
GC Tweaks for faster tests for ruby 2.1.x
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
rvm --create use ruby-2.1.2 | |
export RUBY_GC_HEAP_INIT_SLOTS=1000000 | |
export RUBY_GC_HEAP_FREE_SLOTS=500000 | |
export RUBY_GC_HEAP_GROWTH_FACTOR=1.1 | |
export RUBY_GC_HEAP_GROWTH_MAX_SLOTS=10000000 | |
export RUBY_GC_MALLOC_LIMIT_MAX=500000000 | |
export RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR=1.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment