2

how/where to set --fast mode for jruby when using it within jruby/rack inside tomcat?

This --fast mode is explained in this page jruby performance tuning

so_mv
  • 3,939
  • 5
  • 29
  • 40

1 Answers1

3

Pass these flags to JVM:

-Djruby.compile.mode=FORCE -Djruby.compile.fastest=true

however you with Tomcat.

banzaiman
  • 2,631
  • 18
  • 27