Last active
December 13, 2015 17:38
-
-
Save johanneswuerbach/4948832 to your computer and use it in GitHub Desktop.
Faster Rails
This file contains 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
export RUBY_HEAP_MIN_SLOTS=1000000 | |
export RUBY_HEAP_SLOTS_INCREMENT=1000000 | |
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1 | |
export RUBY_GC_MALLOC_LIMIT=1000000000 | |
export RUBY_HEAP_FREE_MIN=500000 |
This file contains 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
# Source: https://github.com/skaes/rvm-patchsets | |
rvm get stable | |
# Latest ruby | |
rvm reinstall 1.9.3 --patch railsexpress | |
# Patchlevel 372 | |
rvm reinstall 1.9.3-p327 --patch railsexpress |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment