Re: [HACKERS] removing the exec() from doexec()

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: [HACKERS] removing the exec() from doexec()
Дата
Msg-id 199804300153.VAA00508@candle.pha.pa.us
обсуждение исходный текст
Ответы Re: [HACKERS] removing the exec() from doexec()  (Brett McCormick <brett@work.chicken.org>)
Список pgsql-hackers
> This exec() takes 15% of our startup time.  I have wanted it removed for
> many releases now.  The only problem is to rip out the code that
> re-attached to shared memory and stuff like that, because you will no
> longer loose the shared memory in the exec().  The IPC code is
> complicated, so good luck.  I or others can help if you get stuck.
>

Another item is to no longer use SYSV shared memory but use
mmap(MAP_ANON) because this allows a much larger amount of shared memory
to be used.

--
Bruce Momjian                          |  830 Blythe Avenue
maillist@candle.pha.pa.us              |  Drexel Hill, Pennsylvania 19026
  +  If your life is a hard drive,     |  (610) 353-9879(w)
  +  Christ can be your backup.        |  (610) 853-3000(h)

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] removing the exec() from doexec()
Следующее
От: Brett McCormick
Дата:
Сообщение: Re: [HACKERS] removing the exec() from doexec()