Re: How Do I Create A Per-Worker Pool?

2002-09-27 Thread Charles Reitzel
Thanks for telling me what I need to know: "you can't get there from here." I don't want to start a philosophical debate, but it is a common idiom (yea, verily a "pattern") in multi-threaded programming to avoid contention by duplicating singletons in each thread. This can be done either by us

Re: How Do I Create A Per-Worker Pool?

2002-09-26 Thread Charles Reitzel
wrote: >On Wed, 25 Sep 2002, Charles Reitzel wrote: > > Objective: to create a mutex-free pool per worker in non-MPM-specific > > way. > > ... > > > > I found this exchange in a June posting: > > > >> Just do: > >>

How Do I Create A Per-Worker Pool?

2002-09-25 Thread Charles Reitzel
Hi All, This is a thorny (to me) module development question. I have asked on the module list and searched the archives, but have found only a partial answer. Any pointers will be appreciated. Objective: to create a mutex-free pool per worker in non-MPM-specific way. I found this exchange i