Posted by lorento on 06/08/06 07:24
Ike wrote:
> Is anyone aware of a means of connection pooling (to MySQL, say) in php?
> Thanks, Ike
Making a new connection at database server using much resources like
memory and cpu.
Connection pool is a cache of database connection. Instead of making
new connection, database server reused the old connection. This method
can increase performance and use few memory.
regards,
Lorento
--
http://blogs.deshot.com
http://www.mastervb.net
http://www.groupvita.com
[Back to original message]
|