Hi All,

1. Can you tell me what impact on performance has using many connectors?

I need to run additional two connectors (for http and https) to allow
some request to be understood as proxied, and others as direct. See the
code below.

2. Do request to different connectors share the same session scope?
3. Are classes loaded once for all connectors, or does each connector
load its own copy of the classes?
In other words, if I have a static member in a class and use 4
connectors, how many copies of this static member will be created? One,
or four?

I would be very grateful if somebody could clarify this.

Thanks in advance, 
Michal. 

--
    <Connector port="20003" maxThreads="150" minSpareThreads="25"
maxSpareThreads="75"
               enableLookups="false" redirectPort="30003"
acceptCount="100"
               debug="0" connectionTimeout="20000"
               disableUploadTimeout="true" proxyName="lxb0754"
proxyPort="80"/>
    <Connector port="40003" maxThreads="150" minSpareThreads="25"
maxSpareThreads="75"
               enableLookups="false" redirectPort="50003"
acceptCount="100"
               debug="0" connectionTimeout="20000"
               disableUploadTimeout="true"/>
    <Connector port="30003"
               maxThreads="150" minSpareThreads="25"
maxSpareThreads="75"
               enableLookups="false" disableUploadTimeout="true"
               acceptCount="100" debug="0" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS" proxyName="lxb0754"
proxyPort="443"/>
    <Connector port="50003"
               maxThreads="150" minSpareThreads="25"
maxSpareThreads="75"
               enableLookups="false" disableUploadTimeout="true"
               acceptCount="100" debug="0" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS"/>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to