in reply to Clustered Perl Applications?

I would suggest POE. I've used it once for implementing distributed data analysys for an irc bot - everything written some time ago as a proof of concept and it worked (woah!) until i've lost it during system crash (so where's my backup?) :-)
Back to POE - especially the POE Cookbook is worth reading...

Greetz, Tom.

Replies are listed 'Best First'.
Re: Re: Clustered Perl Applications?
by sri (Vicar) on Jul 05, 2003 at 21:05 UTC
    Until now I've not much heared about POE, what's the big deal with it?

    I took a look at the cookbook and the documentation but to me it just looks like a very bloated perl application server framework thingy, please correct me if i am wrong.

    Are there any reference projects using it out there?

    I personally like to use apache/mod_perl for such things.

      Well - I wouldn't describe it as "very bloated". It's a very flexible system that allows you to throw together complex servers quickly. There are many organisations and projects using it successfully.

      So consider yourself corrected :-)

      Apache/mod_perl is nice - its what I use myself most of the time - but not all applications fall easily into a stateless HTTP request/response framework.