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

Along similar lines, I would also like to see a Perl SMTP server (that also does not depend on Apache httpd).

Look at qpsmtpd.

  • Comment on Re^3: Time to write a "serious" http server in Perl?

Replies are listed 'Best First'.
Re^4: Time to write a "serious" http server in Perl?
by jdrago_999 (Hermit) on Aug 17, 2008 at 02:28 UTC
    Look at qpsmtpd.
    Looks good :)

    Thanks for the tip!
Re^4: Time to write a "serious" http server in Perl?
by jdrago_999 (Hermit) on Aug 17, 2008 at 17:47 UTC
    Why would qpsmtpd be an acceptable use of Perl as a network server, while an http server would not be acceptable?

    Is it simply that smtp servers have a finite number of behaviors, while http servers tend to have a much more broad range of possible uses - so that the server cannot be optimized for every kind of situation?

      The only substantive difference I can imagine right now is that HTTP tends to be synchronous and SMTP somewhat more asynchronous. Whether that matters much where the main constraint tends to be network IO, conclusions vary.