Re: Page Miss Hits

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: Page Miss Hits
Дата
Msg-id 1091463567.27166.44.camel@localhost.localdomain
обсуждение исходный текст
Ответ на Page Miss Hits  (Ioannis Theoharis <theohari@ics.forth.gr>)
Ответы Re: Page Miss Hits
Список pgsql-performance
On Mon, 2004-08-02 at 02:11, Ioannis Theoharis wrote:
> Hi, i would like to answer if there is any way in postgres to find the
> page miss hits caused during a query execution.
>
>
> Is there something like explain analyze with the page miss hits???

You're making a basic assumption that is (at least currently) untrue,
and that is that PostgreSQL has it's own cache.  It doesn't.  It has a
buffer that drops buffer back into the free pool when the last
referencing backend concludes and shuts down.  So, PostgreSQL currently
relies on the kernel to cache for it.  So, what you need is a tool that
monitors the kernel cache usage and its hit rate.  I'm not familiar with
any, but I'm sure something out there likely does that.


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

Предыдущее
От: "Scott Marlowe"
Дата:
Сообщение: Re: What kind of performace can I expect and how to
Следующее
От: Gaetano Mendola
Дата:
Сообщение: Re: Page Miss Hits