What are the considerations of using POG for a site with a lot of data
from different tables on a big site with tons of users?
Thanks
eric
POG uses mysql_connect(), which therefore means that connections are
managed by mysql and re-used. Therefore, there will be only 1
connection to mysql regardless of the no. of objects instantiated.
Hope this answers your question.
Joel