Is there a way to increase heap size for Play Framework 2.1?
Below are some of the actions we have tried and it doesn't seems to take into effects: 1) Adding a "jvm.memory=-Xmx1024M -Xms2048M" parameter in conf/application.conf 2) Or follow the instruction in PlayFramework - ProductionConfiguration by typing start -Xms128M -Xmx512m -server http://www.playframework.com/documentation/2.1.2/ProductionConfiguration
How do we monitor if the heap size has been increased? Using Windows Task Manager, we monitor if the committed size has been increase (or are we doing the wrong thing?)
Edited[13/9/13]: We edit the xmx and xms parameter at play2/framework/build.bat file and it works. Is this the proper way to do it? Also any recommended value that you guys are currently using in the production?
Thanks for your help!