Re: Pre-forking backend

Поиск
Список
Период
Сортировка
От Lincoln Yeoh
Тема Re: Pre-forking backend
Дата
Msg-id 3.0.5.32.20011001112725.012e97d0@192.228.128.13
обсуждение исходный текст
Ответ на Re: Pre-forking backend  ("Steve Wolfe" <steve@iboats.com>)
Список pgsql-hackers
At 08:16 PM 30-09-2001 -0600, Steve Wolfe wrote:
>> >
>> > How hard would it be to pre-fork an extra backend for the database a
>> > user just requested so if they next user asks for the same database, the
>> > backend would already be started?
>
>  Perhaps I'm missing something, but it seems to me that the cost of forking
>a new backend would be pretty trivial compared to the expense of processing
>anything but the most simple query.  Am I wrong in that?

I think forking costs a lot on Solaris. That's why Sun promotes threads :).

I still don't see many advantages of doing the preforking in postgresql.
What would the benefits be? Able to open and close db connections many
times a second? Any other advantages?

Can't the apps do their own preforking? All they do is preopen their own db
connections. Then they can take care of whatever initialization and details
they want.

It seems that opening and closing db connections over the network will
always be slower than just leaving a prepared connection open, looking at
just the network connection setup time alone.

I suppose it is helpful for plain cgi scripts, but those don't scale do they?

Cheerio,
Link.



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Pre-forking backend
Следующее
От: Tatsuo Ishii
Дата:
Сообщение: Problem on AIX with current