I am developing an example web-service using RESTFull Api. I want to know how we can manage more then 10000 or more request at a time using tomcat server. Do we control it by only database side parameter configuration (Max_User or Max_Active_Connection), or there is something more in Application server side as well. Say any field in web.xml or any limitation to the number of concurrent connection.
Is that the RAM size and the database side parameters control this or any other way?
In one line, How and what factor of a server(s)(For Java) handle and limit the concurrent connection?
Thanks in Advance.