in reply to multithreaded web application server in perl
Hmmm, how is not having a CGI interface an advantage? You certainly don't want to use the CGI interface for anything that has to be fast, but it's still nice to have one for legacy scripts. What is this compile problem and mod_perl complication you speak of?
The main dissadvantage is that all the details (ssl handling, authentication, authorisation, etc) have to be worked out through the application logic or through a proxy, and that since there is no cgi interface, all queries need to structures like a branch, with only the leaf being free text and the branch nodes being predermined.
It looks to me like you would have saved a lot of effort by using mod_perl (or FastCGI or PersistentPerl).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: multithreaded web application server in perl
by hackmare (Pilgrim) on Dec 09, 2002 at 19:08 UTC | |
by perrin (Chancellor) on Dec 09, 2002 at 19:38 UTC | |
by Anonymous Monk on Dec 10, 2002 at 01:30 UTC | |
by perrin (Chancellor) on Dec 10, 2002 at 17:57 UTC | |
by jeffa (Bishop) on Dec 09, 2002 at 20:46 UTC | |
by Anonymous Monk on Dec 10, 2002 at 01:35 UTC | |
|
Re: Re: multithreaded web application server in perl
by Anonymous Monk on Dec 15, 2002 at 15:11 UTC | |
by hackmare (Pilgrim) on Jan 06, 2003 at 10:40 UTC |