Stupid question about pools

2003-12-03 Thread Brian Akins
Does the request pool get cleaned up after every request? IE, If I register a cleanup on r-pool, will it get ran after every request? -- Brian Akins Senior Systems Engineer CNN Internet Technologies

Re: Stupid question about pools

2003-12-03 Thread Cliff Woolley
On Wed, 3 Dec 2003, Brian Akins wrote: Does the request pool get cleaned up after every request? IE, If I register a cleanup on r-pool, will it get ran after every request? Yep, exactly right.

Re: Stupid question about pools

2003-12-03 Thread Cliff Woolley
On Wed, 3 Dec 2003, Cliff Woolley wrote: On Wed, 3 Dec 2003, Brian Akins wrote: Does the request pool get cleaned up after every request? IE, If I register a cleanup on r-pool, will it get ran after every request? Okay hang on, just to be clear... you have to register it on every request,

Re: Stupid question about pools

2003-12-03 Thread Brian Akins
Cliff Woolley wrote: On Wed, 3 Dec 2003, Cliff Woolley wrote: Okay hang on, just to be clear... you have to register it on every request, and THEN it will get run after every request. Right. Or more correctly, register it on every request on which I want to run the cleanup. Just wanted to

Re: Stupid question about pools

2003-12-03 Thread Cliff Woolley
On Wed, 3 Dec 2003, Brian Akins wrote: I assume the same is true for connections? Every time a connection is closed, the registered cleanups would get ran. Yep. c-pool. --Cliff