Re: In memory Database for postgres

Поиск
Список
Период
Сортировка
От Emanuel Calvo Franco
Тема Re: In memory Database for postgres
Дата
Msg-id f205bb120904131336l57dc6d4ard86276c1038e0c0@mail.gmail.com
обсуждение исходный текст
Ответ на In memory Database for postgres  (aravind chandu <avin_friends@yahoo.com>)
Ответы Re: In memory Database for postgres  (Jeff Davis <pgsql@j-davis.com>)
Список pgsql-general
2009/4/13 aravind chandu <avin_friends@yahoo.com>:
>
>
> Hello,
>
>                Thanks for your reply,but what I am actually looking for is
> database should be an in-memory database and at the same i want to store
> that data into disk so that data won't be lost when the system restarts or
> in case of power failure. Can you guys tell me the procedure how to do this?
> your help will he greatly appreciated.
>
> Thanks,
> Avin.
>

Oh, well... there is a way but is not recomended.

So you can make the tables on memory and with a trigger update on disk...
you can call this inverted materialized views (because in general you
update the views on memory but not in the disk).

But there is a problem... if you update on memory and a shutdown
occurs and the trigger didn't start... you lost this record  :( I must
say that you

That's because i prefer have a database in disk and have updatable
views in memory :)


--
      Emanuel Calvo Franco
        Sumate al ARPUG !
      (www.postgres-arg.org -
         www.arpug.com.ar)
    ArPUG / AOSUG Member
   Postgresql Support & Admin

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

Предыдущее
От: Christophe
Дата:
Сообщение: "PostgreSQL in the cloud" now up on media.postgresql.org
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: In memory Database for postgres