in reply to Re: Time to write a "serious" http server in Perl?
in thread Time to write a "serious" http server in Perl?

I agree - perhaps a Perl5 prototype would be interesting to kick the tires.

A rewrite in Perl6 to take advantage of the new features and optimizations made there would seal the deal.

I would write it using Moose now but the performance hit wouldn't be worth it.
  • Comment on Re^2: Time to write a "serious" http server in Perl?

Replies are listed 'Best First'.
Re^3: Time to write a "serious" http server in Perl?
by stvn (Monsignor) on Aug 14, 2008 at 04:06 UTC
    I would write it using Moose now but the performance hit wouldn't be worth it.

    Actually Moose should perform quite well for something like a HTTP server since the Moose performance hit is largely at compile time and if you utilize the proper optimizations in Moose the runtime can be pretty fast (simple Moose accessors are faster then Class::Accessor).

    -stvn