Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tomcat performance

Status
Not open for further replies.

yytan

Programmer
May 8, 2002
113
MY
Dear all;

I'm doing a simple online shopping, using Tomcat running on Linux. I'ld like to know the maximum number of user concurrently login to the web page that Tomcat able to support.

rgd/ yoke yew
 
If you look at server.xml there is an XML tag that looks like this :

<Connector port="8080" maxThreads="150" ... />

This means that tomcat will support 150 concurrent & active http connections.

You may raise or lower this as you wish. How many actual connections it can handle is generally dependant on your network, ethernet cards, internet connection speed, CPU size, RAM size, the amount of RAM assigned to the tomcat JVM and so on.


--------------------------------------------------
Free Database Connection Pooling Software
 
dear sedj;

10s for ur info ;)

rgd/ yoke yew
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top