Re: memcached and PostgreSQL

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: memcached and PostgreSQL
Дата
Msg-id 200411220415.iAM4Fh908507@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: memcached and PostgreSQL  (Josh Berkus <josh@agliodbs.com>)
Ответы Re: memcached and PostgreSQL
Re: memcached and PostgreSQL
Список pgsql-performance
Josh Berkus wrote:
> Michael,
>
> > Still, it seems like a convenient way to maintain cache coherency,
> > assuming that your application doesn't already have a clean way to do
> > that.
>
> Precisely.    The big problem with memory caching is the cache getting out of
> sync with the database.   Updating the cache through database triggers helps
> ameliorate that.
>
> However, our inability to pass messages with NOTIFY somewhat limits the the
> utility of this solution   Sean wants "on commit triggers", but there's some
> major issues to work out with that.   Passing messages with NOTIFY would be
> easier and almost as good.

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.

In the database, we mark everything we do with a transaction id and mark
the transaction id as committed in on operation.  I see no way to do
that with memcache.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073

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

Предыдущее
От: Neil Conway
Дата:
Сообщение: Re: sort_mem affect on inserts?
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: memcached and PostgreSQL