Re: preloading indexes

Поиск
Список
Период
Сортировка
От Pierre-Frédéric Caillaud
Тема Re: preloading indexes
Дата
Msg-id opsgwmpq0fcq72hf@musicbox
обсуждение исходный текст
Ответ на Re: preloading indexes  (Andrew Sullivan <ajs@crankycanuck.ca>)
Список pgsql-performance
    --

    uh, you can always load a table in cache by doing a seq scan on it...
like select count(1) from table or something... this doesn't work for
indexes of course, but you can always look in the system catalogs, find
the filename for the index, then just open() it from an external program
and read it without caring for the data... it'll save you the seeks in the
index... of course you'll have problems with file permissions etc, not
mentioning security, locking, etc, etc, etc, is that worth the trouble ?

On Wed, 3 Nov 2004 14:35:28 -0500, Andrew Sullivan <ajs@crankycanuck.ca>
wrote:

> On Wed, Nov 03, 2004 at 12:12:43PM -0700, stuff@opensourceonline.com
> wrote:
>> That's correct - I'd like to be able to keep particular indexes in RAM
>> available all the time
>
> If these are queries that run frequently, then the relevant cache
> will probably remain populated[1].  If they _don't_ run frequently, why
> do you want to force the memory to be used to optimise something that
> is uncommon?  But in any case, there's no mechanism to do this.
>
> A
>
> [1] there are in fact limits on the caching: if your data set is
> larger than memory, for instance, there's no way it will all stay
> cached.  Also, VACUUM does nasty things to the cache.  It is hoped
> that nastiness is fixed in 8.0.
>



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

Предыдущее
От: Andrew Sullivan
Дата:
Сообщение: Re: preloading indexes
Следующее
От: Tom Lane
Дата:
Сообщение: Re: preloading indexes