On Jan 18, 2013, at 12:54 PM, yogesh hingmire wrote:

> Folks,
> 
> What are the performance implications of not using the executor element
> (threadpool) for my AJP connector ?

Instead of having one pool of threads that you can share across multiple 
connectors, you'll just have one pool of threads specific to one connector.  If 
you have multiple connectors sharing a pool of threads it may be more 
efficient, depending on your applications and server load. 

> 
> The threads will not be pooled and a new thread will be created for every
> request that will be serviced, taking down the performance ?
> (Essentially no thread Pooling)

No. Threads are pooled whether you specify an executor or not.

Dan

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to