Re: In memory Database for postgres

From: John R Pierce <pierce(at)hogranch(dot)com>
To: postgresql Forums <pgsql-general(at)postgresql(dot)org>
Subject: Re: In memory Database for postgres
Date: 2009-04-13 01:59:57
Message-ID: 49E29C9D.9080901@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

aravind chandu wrote:
> I created in-memory database but the problem is all the
> data will be accessed from main memory .when ever the system is
> restarted the entire data that is in the tables will lost.Is there any
> way to dump all the data in to local hard disk before restarting the
> system or any similar method to save the data in to a permanent storage.

memory is volatile, disk is persistent.

if you want persistent databases, I recommend storing them on disk.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message CM J 2009-04-13 05:48:17 Postgres: Installing as a service
Previous Message aravind chandu 2009-04-13 01:01:17 Re: In memory Database for postgres