[PHP-DB] how should i test my php program performance?

2001-08-22 Thread haheho
Dear all: I have wrote a php program and use mysql database. Is there a way to test its performance? Thanks. haheho -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP-DB] how should i test my php program performance?

2001-08-22 Thread Fernando Ferreras
Hi, You can get the time(); or microtime(); (in linux) in the beginning and in the endo of the code.. example: ? $t1 = time(); code... $t2 = time(); echo Total time is.($t2 - $t1).seconds.; ? []s Ferreras Dear all: I have wrote a php program and use mysql database. Is there a way to

Re: [PHP-DB] how should i test my php program performance?

2001-08-22 Thread Andrey Hristov
use linux but think that the name of the executable is 'ab' Andrey Hristov http://www.icygen.com 99% - Original Message - From: haheho [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 22, 2001 6:23 PM Subject: [PHP-DB] how should i test my php program performance? Dear

Re: [PHP-DB] how should i test my php program performance?

2001-08-22 Thread Justin Buist
There are a few different things you can test here... I. Server Performance (overall) I don't have the name of any specific tool off hand, but basically you would request a slew of .php pages off of the server via HTTP and record how many pages/second actually are served up. This is really the