PQconnectStart/PQconnectPoll

Поиск
Список
Период
Сортировка
От Sergio Mayoral
Тема PQconnectStart/PQconnectPoll
Дата
Msg-id 1352970177.10135.YahooMailNeo@web39302.mail.mud.yahoo.com
обсуждение исходный текст
Ответы Re: PQconnectStart/PQconnectPoll  (Craig Ringer <craig@2ndQuadrant.com>)
Список pgsql-performance
Hi,

i am running some tests to check performance between postgresql and mysql.

one important issue is PQconnectdb (PQconnectStart/PQconnectPoll) against mysql_init/mysql_real_connect functions. (debian platform/C application).

PQconnectdb("host=localhost dbname=my_db user=my_user password='' sslmode=disable"); 

co = mysql_init(NULL)
mysql_real_connect(co, "127.0.0.1", "my_user", "", "my_db", 0, NULL, 0)

PQconnectdb is taking too long comparing to mysql and i found out the time is consumed by PQconnectPoll waiting for the socket to be ready for reading/writing
but this behaviour is not seen in mysql.

I cannot use persistent connections. I must open/close a connection anytime I want to insert something new.

do i have to configure something different? Am i missing something?

this problem gets even worse under PHP.

Regards,

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Strange, John W"
Дата:
Сообщение: Re: postgres 8.4, COPY, and high concurrency
Следующее
От: "Maria L. Wilson"
Дата:
Сообщение: slow query on postgres 8.4