Re: problem with mod_perl 2.0 + apache 2.0 and proxyreq

2003-08-27 Thread Stas Bekman
John Chiu wrote: Thanks in advance. I've tried all the archives and google'd but I have not found anything that would help. I'm running RH 8.0, httpd-2.0.40-11.5 and mod_perl-1.99_05-3 from the RedHat distribution. I'm trying to create a small proxy module that will check a non-proxy

mod_perl 2 APache 2.0 MPM

2003-01-19 Thread Sinclair, Alan (CORP, GEAccess)
All, Starting to strike the first blows with Apache 2.0. I am now wondering about thread safety with mod_perl 2. Will mod_perl support a threaded MPM Apache config ? Thanks,

Re: mod_perl 2 APache 2.0 MPM

2003-01-19 Thread Stas Bekman
Sinclair, Alan (CORP, GEAccess) wrote: All, Starting to strike the first blows with Apache 2.0. I am now wondering about thread safety with mod_perl 2. Will mod_perl support a threaded MPM Apache config ? Why using the future tense, it does support the threaded mpm pretty much from the very

Mod_perl and Apache 2.0

2001-02-28 Thread Jeffrey A. Stuart
Has anyone tried compiling mod_perl under apache 2.0? Also, what is the word on mod_perl 2.0? -- Jeff Stuart [EMAIL PROTECTED]

Re: Mod_perl and Apache 2.0

2001-02-28 Thread sterling
Well, from the looks of the cvs commits, doug seems to be compiling mod_perl under apache 2.0 quite regularly :) With the complete rewrite there's been plenty of work to do. The word on it is here: http://perl.apache.org/~dougm/modperl_2.0.html its still in heavy development by doug - i would

mod_perl and Apache 2.0 alpha on win32

2001-02-21 Thread Alistair McDonald
Howdy. As mod_perl and Apache 1.3 won't thread on NT/2000, I'm asking if anyone has any experience with mod_perl and Apache 2.0 alpha. I've built apache which runs (though it doesn't like my old configuration file very much!), but can't get mod_perl running. Mod_perl builds OK (apparently

Re: mod_perl on Apache 2.0

1999-12-13 Thread Doug MacEachern
On Wed, 3 Nov 1999, Jeffrey Baker wrote: There was a short discussion a while ago about getting mod_perl working with Apache 2.0. Since Apache 2.0 can actually be built and run on a few platforms now, I think it is worth taking a lot at this for real. I started to fiddle with 5.005_63

RE: mod_perl on Apache 2.0

1999-11-03 Thread Gerald Richter
I'm assuming that Perl itself is reentrant, since it has been embedded in multithreaded environments before (IIS). Hopefully someone can comment on that. Perl 5.005 has experimetal thread support, Perl 5.006 might be stable enought to really use it. What ActiveState has done for IIS, is to

Re: mod_perl on Apache 2.0

1999-11-03 Thread Jeffrey W. Baker
"C. Jon Larsen" wrote: One of the main reasons I use mod_perl is because of the pre-fork caching I can do in the parent that the children can share cheaply. I take huge data structures and assemble them in ram as read-only databases (read hash tables) that are much faster and simpler to

RE: mod_perl on Apache 2.0

1999-01-02 Thread Gerald Richter
Perl threads have nothing to do with OS level threads. They aren't native; they're part of the language itself and don't depend or rely on POSIX threads, native threads, or other such things. In particular, Perl threading doesn't mean that Perl is thread safe. Yes, Perl threads are not

Re: mod_perl on Apache 2.0

1999-01-02 Thread Jeffrey Baker
Matt Sergeant wrote: On Thu, 04 Nov 1999, Jeffrey Baker wrote: I'm assuming that Perl itself is reentrant, since it has been embedded in multithreaded environments before (IIS). Hopefully someone can comment on that. This work was based on PERL_OBJECT support, which is currently only