Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Do anyone know which web server is used by play! framework?

I'm planning to prototype a small intranet app using Play! and I am wondering whether I should use the default play web server or Apache or IIS as used internally.

I don't predict several instances of the application running nor a need for load balancing.

share|improve this question

2 Answers

up vote 12 down vote accepted

The internal server is Netty (http://www.jboss.org/netty).

Unless you are forced to deploy a Play application in a servlet container, don't do it. Play performs better on Netty as it doesn't need to jump through hoops to support the servlet standard, which shaves off quite a bit of overhead.

My preferred way of deploying Play is attached to a screen[1] session, but "play start" should also do the trick :)

[1] http://www.manpagez.com/man/1/screen/

share|improve this answer
Thanks. I Definitely don't plan to run the app in a servlet container. However like every organisation, security and familiarity is always a consideration. It is easier for me to sell Play! to infrastructure if there is a way to plug it into our existing architecture. – emt14 Jul 9 '11 at 13:58
That's why the "play war" cop-out is always available :) – cdegroot Jul 9 '11 at 13:59
5  
Interesting. If you "play war", you can't win. ;) – Karl Knechtel Jul 9 '11 at 14:32

Use the play internal server and use apache IIS or whatever is preferred in your company as a reverse proxy.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.