In Tomcat, server.xml
was ist maxThreads
versusmaxConnections
Ich verstehe, dass dies maxConnections
die Anzahl der Verbindungen ist, die zum Server geöffnet sind
Und maxThreads
ist die maximale Anzahl von Anforderungsverarbeitungsthreads
Aber wie die beiden Konfigurationsparameter zusammenarbeiten, werden Sie natürlich nicht maxConnections
auf 1000 und maxThreads
10 einstellen
Welche Beziehung besteht zwischen den beiden Konfigurationsparametern?
<Connector
port="8443"
protocol="org.apache.coyote.http11.Http11Protocol"
maxThreads="250"
SSLEnabled="true"
scheme="https" secure="true"
clientAuth="false"
sslProtocol="TLS"
connectiontimeout="20000"
/>