in reply to Perl Application Server

Yes, there is. One such solution is POE. Check the POE cookbook where you have some examples of Application Servers. I haven't used it (yet). As for caching you might check memcached. It works pretty nice. You will also need the daemon. I use memcached to cache web pages that are constantly visited, but leave the SQL query caching to the database server.

Replies are listed 'Best First'.
Re^2: Perl Application Server
by snoopie (Novice) on Oct 11, 2006 at 08:39 UTC
    You gave me the right direction, thanks a lot.