On Fri, May 21, 1999 at 10:27:59AM +0800, zjs wrote:
> but i think establition of connect to mysql cost a lot of CPU
> time(is such?), and if i have large amount users......
MySQL connects very quickly, relative to other databases. Esp.
if you are using a recent version which passes the database
name in the connect call.
> i wonder if mysql has the technology of connection pool: not
> establish a connection direct to the database but get a
> connection from the connection pool?
Look into using PHP or Perl as Apache modules, and then you can
use "persistent database connections". You can find out more
in the docs for those packages.
Tim