Re: PostgreSQL Process memory architecture

Поиск
Список
Период
Сортировка
От Amit Langote
Тема Re: PostgreSQL Process memory architecture
Дата
Msg-id CA+HiwqFqR2vm6SRgwgJH4M6yLrDVkh=Xi2z84Jc73K32q0EmTQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: PostgreSQL Process memory architecture  ("Ben Zeev, Lior" <lior.ben-zeev@hp.com>)
Ответы Re: PostgreSQL Process memory architecture
Список pgsql-hackers
On Mon, May 27, 2013 at 7:25 PM, Ben Zeev, Lior <lior.ben-zeev@hp.com> wrote:
> Thanks Atri!
>
> Do you know why PostgreSQL store the indexes in memory per process and not in the shared memory?
> Is there a way to prevent it store the indexes data per process, and force it storing it in the shared memory?
>

An index is built in backend process's local memory, but, when
accessing, index pages are stored in shared memory. That is, for
example, when an index scan is performed, index pages are brought into
shared memory and accessed from there.


--
Amit Langote



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

Предыдущее
От: Atri Sharma
Дата:
Сообщение: Re: PostgreSQL Process memory architecture
Следующее
От: Atri Sharma
Дата:
Сообщение: Re: PostgreSQL Process memory architecture