Hi!
i tried using pear for db connection. I also compare speed of connecting (persistant, non-persistant) and in found that Pear class gets always the same slow results, it doesn't metter if i use persistant or not. If i use normal pg_pconnect the diference is huge, like 120 times faster with persistant connection.
$db = DB::connect( "pgsql://uros:@/template1",1);
this is my connect for Pear. (1 meand persistant)
$connect = pg_pconnect("dbname=template1 user=uros password=")
this is normal function.
What should i do or what am i doing wrong