Re: [SITE][mp2] Associating an interpreter pool with a directory

2004-08-27 Thread Jozef Kosoru
On Thu, Aug 26, 2004 at 01:23:47 -0400, Perrin Harkins wrote: > Read http://perl.apache.org/docs/2.0/user/config/config.html > > It looks like you would just need to do this: > > > PerlOptions +Clone > PerlInterpStart 2 > PerlInterpMax 2 > > > > PerlOptions +Clone > PerlIn

Re: [SITE][mp2] Associating an interpreter pool with a directory

2004-08-26 Thread Stas Bekman
Perrin Harkins wrote: On Thu, 2004-08-26 at 16:15, Stas Bekman wrote: It works with prefork MPM too as long as perl has ithreads enabled, it's exercised in the test suite. That wouldn't really be the same thing though, would it? For example, every child process would have a different $count vari

Re: [SITE][mp2] Associating an interpreter pool with a directory

2004-08-26 Thread Perrin Harkins
On Thu, 2004-08-26 at 16:15, Stas Bekman wrote: > It works with prefork MPM too as long as perl has ithreads enabled, it's > exercised in the test suite. That wouldn't really be the same thing though, would it? For example, every child process would have a different $count variable and a differe

Re: [SITE][mp2] Associating an interpreter pool with a directory

2004-08-26 Thread Stas Bekman
Perrin Harkins wrote: [EMAIL PROTECTED] wrote: Is it within the scope of mod_perl2 to duplicate its interpreter pool framework? Intention: To have separate interpreter pools for directories /test1 and /test2 Read http://perl.apache.org/docs/2.0/user/config/config.html It looks like you would jus

Re: [SITE][mp2] Associating an interpreter pool with a directory

2004-08-25 Thread Perrin Harkins
[EMAIL PROTECTED] wrote: Is it within the scope of mod_perl2 to duplicate its interpreter pool framework? Intention: To have separate interpreter pools for directories /test1 and /test2 Read http://perl.apache.org/docs/2.0/user/config/config.html It looks like you would just need to do this: P