From 797ba8046562864a09ed36e6040055babb536615 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 22 Aug 2015 05:06:57 +0000 Subject: www: enable and expand preload from mod_perl2 Hopefully this saves us some memory with CoW on *nix. --- public-inbox.cgi | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'public-inbox.cgi') diff --git a/public-inbox.cgi b/public-inbox.cgi index 63663f32..75d510c0 100755 --- a/public-inbox.cgi +++ b/public-inbox.cgi @@ -4,13 +4,16 @@ use strict; use warnings; use IO::Handle; -require PublicInbox::WWW; +use PublicInbox::WWW; use CGI qw/-nosticky/; our $NO_SCRIPT_NAME; our %HTTP_CODES; BEGIN { $NO_SCRIPT_NAME = 1 if $ENV{NO_SCRIPT_NAME}; - CGI->compile if $ENV{MOD_PERL}; + if ($ENV{MOD_PERL}) { + CGI->compile; + PublicInbox::WWW->preload; + } %HTTP_CODES = ( 200 => 'OK', -- cgit v1.2.3-24-ge0c7