Re: system cache and buffer cache - Mailing list pgsql-hackers

From Praveen Kumar N
Subject Re: system cache and buffer cache
Date
Msg-id Pine.LNX.4.61.0609191916570.5129@students.iiit.ac.in
Whole thread Raw
In response to Re: system cache and buffer cache  (Heikki Linnakangas <heikki@enterprisedb.com>)
Responses Re: system cache and buffer cache  (Heikki Linnakangas <heikki@enterprisedb.com>)
List pgsql-hackers
Buffer cache is implemented using bufferpool right(I mean in the main 
memory).how about system cache? Can we control the size of system cache?

On Tue, 19 Sep 2006, Heikki Linnakangas wrote:

> System cache is a per-row cache of system catalog tables. It's used to speed 
> up lookup of things like function names. It's implemented in 
> src/backend/utils/cache/syscache.c
>
> Buffer cache is the cache managed by the buffer manager, that caches any 
> blocks from any relation used in the system. All access to relations go 
> through the buffer cache, using ReadBuffer/ReleaseBuffer (etc.) calls. It's 
> implemented in src/backend/storage/buffer/bufmgr.c
>
>

--  N Praveen Kumar Btech-IV CSE IIIT,Hyd AP,India
    Imagination is more important than knowledge...                                --Albert Einstein



pgsql-hackers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: Re: system cache and buffer cache
Next
From: mark@mark.mielke.cc
Date:
Subject: Re: [PATCHES] Patch for UUID datatype (beta)