Re: Effective Cache Size

From: Manfred Koizar <mkoi-pg(at)aon(dot)at>
To: Howard Oblowitz <HowardO(at)LEWIS-STORES(dot)com>
Cc: "scott(dot)marlowe" <scott(dot)marlowe(at)ihs(dot)com>, pgsql-performance(at)postgresql(dot)org
Subject: Re: Effective Cache Size
Date: 2003-07-01 18:22:13
Message-ID: a9j3gvgg2r7idrmfu7st9h8odc7pogq2lj@4ax.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Tue, 1 Jul 2003 15:50:14 +0200 , Howard Oblowitz
<HowardO(at)LEWIS-STORES(dot)com> wrote:
>What then will be the effect of setting this too high?

The planner might choose an index scan where a sequential scan would
be faster.

>And too low?

The planner might choose a sequential scan where an index scan would
be faster.

>How does it impact on other applications eg Java ?

It doesn't -- at least not directly. (There could be very subtle
effects when Postgres does a sequential scan over a large relation
thus pushing everything else out of the cache, where an index scan
would have read only a small number of pages. Or when a large index
scan turns your machine from CPU bound to I/O bound.)

Servus
Manfred

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Christopher Kings-Lynne 2003-07-02 01:37:19 Re: Version 7 question
Previous Message Manfred Koizar 2003-07-01 18:01:54 Re: Version 7 question