According to this page:
http://grails.github.io/grails-howtos/en/performanceTuning.html#s3, the grails run-app
command will provide some options to the JVM itself, such as -XX:MaxPermSize
. So, my question is, what options are provided by the grails run-app
command by default? The reason that I am asking this is that I am doing some benchmarking in the development mode, so I want to make sure that I am actually changing something when I provide JVM options through GRAILS_OPTS.
Thank you in advance.