Reputation: 43
I'm developing a servlet that will be deployed in Glassfish 4.1 I'm wondering how many concurrent requests or "connections" can be made to a servlet for scalability purposes?
I've read that sometimes is 10, sometimes a thread pool can be used, but i haven't found a way to configure or read this info related to glassfish contained servlets.
Upvotes: 1
Views: 395
Reputation: 15446
It look like the minimum is 2 and maximum is 5 as per this document Glassfish Performance tuning
Upvotes: 1