in reply to Something like Tomcat for Perl

You will that Perl/Apache handle the directory aliasing feature very nicely, and even sessions work OK. For simple things.

Sometimes you need to store objects (blessed references) in the session or application scope. This is easy in Java. In Perl you must deal with serialization issues. Even 5.8 with mod_perl2 offers little help here.

Luckily this is rarely needed.

Replies are listed 'Best First'.
Re: Re: Something like Tomcat for Perl
by IOrdy (Friar) on May 20, 2003 at 04:47 UTC
    If you create a resource pool that your objects can fetch resources from then serialization of those objects becomes less of a problem.

    See ResourcePool on the CPAN.