Re: [GENERAL] Re: replication

From: Jeff Hoffmann <jeff(at)propertykey(dot)com>
To:
Cc: pgsql-general(at)hub(dot)org, pgsql-general-digest(at)hub(dot)org
Subject: Re: [GENERAL] Re: replication
Date: 1999-11-16 17:21:45
Message-ID: 383192A9.AA3E25C4@propertykey.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

"Aaron J. Seigo" wrote:

> > I would like to inquire if with PostgreSQL 6.5.3.x I can put the same
> > database on two or more different Linux server such that each update will
> > be replicated on all database backends...
>
> right now, you can jury rig your own system up using network file systems,
> periodic updates of local filesystems, etc... this is limited in
> usefulness...

my favorite hack is to wrap the c/c++ api so you can set up a group of
mirror database connections and then calling the wrapped functions will
call the original function on each of the mirror database connections.
i've really never thought of it as something that should be part of the
library, though, since that's pretty easy to implement in the
application.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message John Hyland 1999-11-16 17:53:21 create type question again
Previous Message Aaron J. Seigo 1999-11-16 16:24:00 Re: replication