in reply to Re^2: Help choosing the most efficient, dependable condition(al)
in thread Help choosing the most efficient, dependable condition(al)
There's a lot to be gained by using a Web framework (you are familiar with CGI.pm, try Plack::Request/Plack::Response), where one doesn't have to care about newlines at all - the software handles the correct formatting for me. Short example: plackup -MPlack::Request -e'sub { my $req = Plack::Request->new(shift); return $req->new_response(200, [Content_Type => "text/html", Vary => "Accept"], [])->finalize }'
Doing the formatting manually and needing to get it correct is the real overhead. The work time of a programmer is expensive.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Help choosing the most efficient, dependable condition(al)
by taint (Chaplain) on Nov 14, 2013 at 00:23 UTC |