Your link doesn't go anywhere.

Perhaps if you could expound on what you are looking to accomplish you might get some better answers

In general, POE is one of the most supported event loops which makes it a good candidate for Event Driven design patterns.

Do client/server applications lend themselves to event driven patters? Well, I would say that largely depends on your requirements (and of course, what you are trying to accomplish.

I will say, from personal experience, I was able to reimplement an IRC bot I had written (in one giant while(1){} loop ) in POE in several hundred lines vs several thousand lines. The down side is that the initial startup of the bot written in POE takes a bit longer to startup and start responding to input, once the bot has joined the channel, it accepts input but doens't start responding for a few moments, once it's started up and all the internal Memoization/Caching/Whatever happens under the hood/etc. I don't notice any performance issues.

On the other hand, if you're looking to implement a webserver I would point you to plackperl (which takes it cues from Python wsgi and Ruby Rack, though it is my opinion that psgi does middleware better than Ruby and Python), there is a list of servers and frameworks for web development (including a couple built on AnyEvent, AnyEvent does support POE event loops) that I really don't think it's worth rolling your own.


In reply to Re: Current Thoughts on Server/Client Best Development Strategies by three18ti
in thread Current Thoughts on Server/Client Best Development Strategies by rl4518

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.