getEngine().getPool().setWindow() did the trick. Our applications are MUCH more responsive. Thank you!
-----Original Message----- From: Kent Tong [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 3:26 AM To: [email protected] Subject: Re: Lifespan of the page pool Eric Williams <ericw <at> sandiego.com> writes: > > Thank you for your insight. It's good to know that pages don't expire from > the page pool. That helps narrow the problem. We are using Linux servers, > but either of the issues you mentioned could be the culprit. Idle pages are removed from the pool from time to time. By default if a page is not used for 5 minutes, it will be removed. To make them stay longer, do something like: getEngine().getPool().setWindow(20); //1 means 30s, so 20 means 10 minutes -- Author of an e-Book for learning Tapestry (http://www.agileskills2.org/EWDT) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
