Quote:
Originally posted by HQ
Are you saying php is faster that perl?
|
PHP is way faster than Perl, even if you have FastCGI running and PHP is a module and isnt forked for each request.
Everytime a CGI is loaded your webserver opens a shell and executed perl -f(?) perlfile.cgi
where as php as a module is all embedded.
You will also need to optimize your database table fields so that your searching takes up a lot less time.
Joe