Re: Servlet Performance

2010-11-25 Thread ep
no performance penalty, since all the requests are processed in parallel, by single instance though. On 24 Nov., 23:48, Ross McKinnon r.mckinno...@googlemail.com wrote: Hi there, Just a quick question regarding performance of Servlets... My App is database driven and was wondering if

Servlet Performance

2010-11-24 Thread Ross McKinnon
Hi there, Just a quick question regarding performance of Servlets... My App is database driven and was wondering if performance is affected if there are multiple servlets opposed to one single servlet to handle all requests? Thank you Ross -- You received this message because you are

Re: Servlet Performance

2010-11-24 Thread Gaurav Vaish
No problems... only thing is that the logic in your servlet goes complex. For example, in Struts - the Action Servlet handles all incoming requests (generally to /do/* or *.do mappings) -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 25, 3:48 am, Ross McKinnon