----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files.  Don't make us guess your problem!!!
----------------------------------------------------------------

David,


>Rapidly I'm seeing my number of connections getting very large the
>more different servlets I have. 


One more suggestion with Connection Pools, you can use JServ to load your
Connection Pool on startup so the first person asking for it doesnt have to
wait for it to load. In your your_zone_name.properties file use the
servlets.startup directive, ie;

        servlets.startup=Preloaded_Servlet_Name

I have a class which is preloaded on the JServs startup which carries the
classes that I want preloaded, such as the static instance of the Connection
Pool. That way the connection pool loads, initialises and makes all its
several seconds each connections when JServ starts. As opposed to when
someone is waiting on the other end for data to be returned.


Hope that helps a bit.





Cameron Riley


--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to