Re: memcached and PostgreSQL

Поиск
Список
Период
Сортировка
От Josh Berkus
Тема Re: memcached and PostgreSQL
Дата
Msg-id 200411212027.15554.josh@agliodbs.com
обсуждение исходный текст
Ответ на Re: memcached and PostgreSQL  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-performance
Bruce,

> The big concern I have about memcache is that because it controls
> storage external to the database there is no way to guarantee the cache
> is consistent with the database.  This is similar to sending email in a
> trigger or on commit where you can't be certain you send email always
> and only on a commit.

Well, some things ... ON COMMIT triggers, or messages with NOTIFY, would
improve the accuracy by cutting down on cached aborted transactions.

However, caching is of necessity imperfect.   Caching is a trade-off; greater
access speed vs. perfect consistency (and any durability).    There are cases
where the access speed is more important than the consistency (or the
durability).   The answer is to use memcached judiciously and be prepared to
account for minor inconsistencies.

For that matter, as with other forms of cumulative asynchronous materialized
view, it would be advisable to nightly re-build copies of data stored in
memcached from scratch during system slow time, assuming that the data in
memcached corresponds to a real table.  Where memcached does not correspond
to a real table (session keys, for example), it is not a concern at all.

--
Josh Berkus
Aglio Database Solutions
San Francisco

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: memcached and PostgreSQL
Следующее
От: Sean Chittenden
Дата:
Сообщение: Re: memcached and PostgreSQL