Comments on: Koha benchmarking https://blog.bigballofwax.co.nz/2010/01/11/koha-benchmarking/ Just random ranting and raving Tue, 12 Jan 2010 01:52:52 +0000 hourly 1 http://wordpress.com/ By: Chris https://blog.bigballofwax.co.nz/2010/01/11/koha-benchmarking/comment-page-1/#comment-319 Tue, 12 Jan 2010 01:52:52 +0000 http://blog.bigballofwax.co.nz/?p=1372#comment-319 In reply to Dobrica Pavlinuši?.

It’s a pretty simple set up, purely for testing. And I am totally willing to believe it will still cause problems. But it is certainly worth testing.

PerlRequire "/home/chris/mod_perl-startup.pl"
PerlModule ModPerl::Registry
<Location /cgi-bin/>
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
PerlOptions +ParseHeaders
Options +ExecCGI
</Location>

And my startup script is as simple as

if ( ! {MOD_PERL}) { die "GATEWAY_INTERFACE not Perl!"; }
use lib qw(/home/chris/git/koha.git);
1;

Like

]]>
By: Dobrica Pavlinuši? https://blog.bigballofwax.co.nz/2010/01/11/koha-benchmarking/comment-page-1/#comment-318 Mon, 11 Jan 2010 13:08:00 +0000 http://blog.bigballofwax.co.nz/?p=1372#comment-318 Could you share your mod_perl configuration? My experiment with Koha last summer under mod_perl occasionally segfaulted Apache, but this might changed in last few months.

Like

]]>