Re: Query results caching?

Поиск
Список
Период
Сортировка
От Jim C. Nasby
Тема Re: Query results caching?
Дата
Msg-id 20050822223857.GP72767@pervasive.com
обсуждение исходный текст
Ответ на Re: Query results caching?  (Ben-Nes Yonatan <da@canaan.co.il>)
Ответы Re: Query results caching?  (Ben-Nes Yonatan <nimrod@canaan.co.il>)
Список pgsql-general
On Tue, Aug 23, 2005 at 12:27:39AM +0200, Ben-Nes Yonatan wrote:
> Jim C. Nasby wrote:
> >Emptying the cache will not show real-life results. You are always going
> >to have some stuff cached, even if you get a query for something new. In
> >this case (since you'll obviously want those indexes there), after some
> >amount of time you will have most (if not all) of the non-leaf index
> >pages cached, since they take a fairly small amount of memory and are
> >frequently accessed. This makes index traversal *much* faster than your
> >initial case shows, even if you query on something different each time.
> >Testing with a completely empty cache just isn't that realistic.
>
> As far as I understand it at my situation where all of the data is
> deleted and inserted each day from the start (INDEX will get lost with
> it..) & the endless variety of possible keywords search's & the immense
> size of the tables, the following reason wont last.. or am I wrong here?

You're wrong - to an extent. Remember that while you're loading all that
data it's also being cached. Now, some of it will probably end up
falling out of the cache as all the data is read in, but you certainly
won't be starting from the clean slate that you're looking for.
--
Jim C. Nasby, Sr. Engineering Consultant      jnasby@pervasive.com
Pervasive Software        http://pervasive.com        512-569-9461

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

Предыдущее
От: "Dann Corbit"
Дата:
Сообщение: Re: Query results caching?
Следующее
От: Mike Nolan
Дата:
Сообщение: Is there such a thing as a 'background database job'?