mod_perl: For Your Health!

You may have wondered why I had the slight delay in posts this week. I had a good reason: we switched one of our major products from IIS to Apache! In general it was a fairly painless process. The details are documented in my previous post, Migrating from IIS to Apache. There was one hitch though…

We have an autocomplete field that needs to be pretty snappy. For IIS we just installed ActivePerl and named the file autocomplete.plex and it was good. Well, mod_perl isn’t quite so easy; we had a couple major snags.

For some reason we had a lot of issues trying to get mod_perl working with ActivePerl 5.8. I initially wanted to leave it at 5.8 because of various modules that were already installed and couldn’t easily be upgraded. I eventually decided to bite the bullet and install 5.10 and update the modules.

After installing Apache (see previous post) and ActivePerl 5.10 (plus lots of modules) we had to install mod_perl, which was surprisingly easy:

ppm install http://cpan.uwinnipeg.ca/PPMPackages/10xx/mod_perl.ppd

After that I had to add to the configuration for Apache:

LoadModule perl\_module modules/mod\_perl.so
LoadFile "C:/Perl/bin/perl510.dll"

<location /foo/autocomplete/perl="/foo/autocomplete/perl">
   SetHandler perl-script
   PerlResponseHandler ModPerl::Registry
   Options +ExecCGI
</location>

Since we were only converting that one script we limited mod_perl to that single directory.

The last issue that we had was that you cannot use CGI.pm with mod_perl; fortunately for us in this file all we were using it for was to print a header, and mod_perl does that for you by default, so we just commented out those lines. At some point I’ll need to do some more research and learn the mod_perl way to get params and print headers.

In general it was pretty nice. We now have a much more stable configuration and mod_perl is extremely fast. The autocompleter went around ten times faster (60~ms total afterwards) after switching. I didn’t get a persistent DBI connection set up, but I did put all of the use directives in the BEGIN block.

If anyone has pointers on persistent DBI connections, a way to only set mod_perl for a single file extension, or whatever the mod_perl replacement is for CGI.pm, let me know!

Posted Sat, Mar 7, 2009

If you're interested in being notified when new posts are published, you can subscribe here; you'll get an email once a week at the most.