I have installed Play on OSX 10.6 and wanted to test the baseline memory usage. I read the deployment documentation and noticed that running Play behind a reverse proxy server is suggested. What I have seen when I run play run myApp which basically prints hello world is this:
Initial memory usage when started is:
10345 java user 0.1 22 71.5 MB Intel (64 bit)
after a few several thousand hits, it grows substantially to:
10345 java user 0.1 26 123.7 MB Intel (64 bit)
Which is fine and all, but it slowly creeps up to 140MB after few thousand more
test requests.
My question is targeted at the above amount of memory and if these numbers are normal. I was looking at the amount of java memory playapps.com offers and going by my findings suggests that my HelloWorld app will not fit in 64MB base plan.
How can that be ? Is there a production version of play run MyApp that doesn't
enable development related features ?