Re: Apache2::Reload: Where is it?

2009-01-15 Thread Raymond Wan
Hello, fREW Schmidt wrote: I am trying to use Apache2::Reload for development, and I apparently configured my server incorrectly because I get these errors when I include the PerlMode Apache2::Reload and PerlInitHandler Apache2::Reload directives I get these errors: [Thu Jan 15 17:34:21 2009]

Re: Initializing Sleepycat::DbXml (Berkeley, Oracle) objects in startup.pl

2009-01-15 Thread Mark Hedges
On Thu, 15 Jan 2009, Michael Ludwig wrote: > PerlRequire /home/milu/www/eumel/startup.pl > PerlChildInitHandler Eumel::Gurke::bla; > PerlChildExitHandler Eumel::Gurke2::bla; No trailing semicolons? Probably if you first do PerlLoadModule Foo::Bar it will fail and inform you > > my $container

Re: Initializing Sleepycat::DbXml (Berkeley, Oracle) objects in startup.pl

2009-01-15 Thread mackenna
Apache is forgiving/robust about specifying nonexistent phase handlers in httpd.conf and inserts thereto. I was using event, and had to let each thread open its own DBs based on an undefined global. Then I found that the identical traffic-test exerciser could get 66 files/second back in event an

Apache2::Reload: Where is it?

2009-01-15 Thread fREW Schmidt
Hello all, I am trying to use Apache2::Reload for development, and I apparently configured my server incorrectly because I get these errors when I include the PerlMode Apache2::Reload and PerlInitHandler Apache2::Reload directives I get these errors: [Thu Jan 15 17:34:21 2009] [error] Can't locat

Re: Initializing Sleepycat::DbXml (Berkeley, Oracle) objects in startup.pl

2009-01-15 Thread Michael Ludwig
Mark Hedges schrieb: On Wed, 14 Jan 2009, Michael Ludwig wrote: I want to build a mod_perl2 application using Sleepycat::DbXml. This is However, I don't know how to do this. Currently, I'm trying to set up things in startup.pl (loaded via PerlPostConfigRequire), store the database environment

Re: Initializing Sleepycat::DbXml (Berkeley, Oracle) objects in startup.pl

2009-01-15 Thread Michael Ludwig
Mark Hedges schrieb: Probably what you're thinking of is a PerlChildInitHandler so that each mod_perl child process does your connection for you when the child process first forks. Yes, that's what I thought. But then I noticed that the PerlChildInitHandler I set up is ignored. Apache configura