Re: caching table/query - Mailing list pgsql-admin

From Michael Fuhr
Subject Re: caching table/query
Date
Msg-id 20050717140655.GA9637@winnie.fuhr.org
Whole thread Raw
In response to caching table/query  (Tsirkin Evgeny <tsurkin@mail.jct.ac.il>)
Responses Re: caching table/query  (Tsirkin Evgeny <tsurkin@jct.ac.il>)
List pgsql-admin
On Sun, Jul 17, 2005 at 02:00:28PM +0300, Tsirkin Evgeny wrote:
>
> I have several pretty little tables (~300 - 400 records) which are
> queried very frequently.
> I would like to make postrgres be aware of this and do a in memory cache
> for it .

PostgreSQL maintains a buffer cache in shared memory; if you enable
statistics gathering then you can see how effective it is for the
tables in question:

http://www.postgresql.org/docs/8.0/static/monitoring-stats.html

If the tables are small and you're querying them frequently, and
if shared_buffers is adequately sized, then I'd expect most or all
queries to be satisfied from the buffer cache.  Those that aren't
might still be satisfied from the OS's cache.

Are you experiencing performance problems?  Presumably that's the
real problem you're trying to solve.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/


pgsql-admin by date:

Previous
From: Scott Marlowe
Date:
Subject: Re: FATAL: invalid value for parameter "wal_sync_method":
Next
From: Chris Travers
Date:
Subject: Re: caching table/query