slow pg_connect()

From: <firerox(at)centrum(dot)cz>
To: <pgsql-performance(at)postgresql(dot)org>
Subject: slow pg_connect()
Date: 2008-03-24 07:40:15
Message-ID: 200803240840.8128@centrum.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Hi,

I'm uning postgres 8.1 at P4 2.8GHz with 2GB RAM.
(web server + database on the same server)

Please, how long takes your connectiong to postgres?

$starttimer=time()+microtime();

$dbconn = pg_connect("host=localhost port=5432 dbname=xxx user=xxx password=xxx")
or die("Couldn't Connect".pg_last_error());

$stoptimer = time()+microtime();
echo "Generated in ".round($stoptimer-$starttimer,4)." s";

It takes more then 0.05s :(

Only this function reduce server speed max to 20request per second.

Than you for any Help!

Best regards.

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Craig Ringer 2008-03-24 07:58:16 Re: slow pg_connect()
Previous Message Dennis Bjorklund 2008-03-24 07:21:32 Turn correlated in subquery into join