Re: How to keep a table in memory?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: How to keep a table in memory?
Дата
Msg-id 29576.1194926074@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: How to keep a table in memory?  (Devrim GÜNDÜZ <devrim@CommandPrompt.com>)
Ответы Re: How to keep a table in memory?  (Gregory Stark <stark@enterprisedb.com>)
Re: How to keep a table in memory?  (Andrew Sullivan <ajs@crankycanuck.ca>)
Re: How to keep a table in memory?  (Bruce Momjian <bruce@momjian.us>)
Список pgsql-hackers
Devrim GÜNDÜZ <devrim@CommandPrompt.com> writes:
> So, IMHO, saying "trust your OS + PostgreSQL" is not a 100% perfect
> approach for the people who are asking to keep their objects on RAM,
> even though I know that there is nothing we can say right now.

Well, nothing is a 100% solution.  But my opinion is that people who
think they are smarter than an LRU caching algorithm are typically
mistaken.  If the table is all that heavily used, it will stay in memory
just fine.  If it's not sufficiently heavily used to stay in memory
according to an LRU algorithm, maybe the memory space really should be
spent on something else.

Now there are certainly cases where a standard caching algorithm falls
down --- the main one I can think of offhand is where you would like to
give one class of queries higher priority than another, and so memory
space should preferentially go to tables that are needed by the first
class.  But if that's your problem, "pin these tables in memory" is
still an awfully crude solution to the problem.  I'd be inclined to
think instead about a scheme that lets references made by
higher-priority queries bump buffers' use-counts by more than 1,
or some other way of making the priority considerations visible to an
automatic cache management algorithm.
        regards, tom lane


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

Предыдущее
От: Devrim GÜNDÜZ
Дата:
Сообщение: Re: How to keep a table in memory?
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Simplifying Text Search