in reply to Re: Perl UI?
in thread Perl UI?

There are 2 general approaches to dynamic web content: CGI is the simplest approach, but as it launches a separate process for each request and can be inefficient in high traffic environments.

ISAPI, PHP and mod_perl are faster but run in the same process space as the web server.

FastCGI may be a good compromise if CGI is too burdensome.