Penguin
Annotated edit history of Replication version 1, including all changes. View license author blame.
Rev Author # Line
1 CraigBox 1 Replication is the act of creating (normally automatically) a duplicate copy of a database or file system on a different computer. The term usually implies the intelligent copying of parts of the source database which have changed since the last replication with the destination.
2
3 Replication may be one-way or two-way. Two-way replication is much more complicated because of the possibility that a replicated object may have been updated differently in the two locations in which case some method is needed to reconcile the different versions.
4
5 Some examples:
6
7 * Lotus Notes can automatically distribute document databases across telecommunications networks. Notes supports a wide range of network protocols including X25 and Internet TCP/IP.
8 * [LDAP] (and implementations like ActiveDirectory) can be set up across multiple servers, so you query any one and get the same information, because they replicated between them.
9 * [PostgreSQL] is getting replication in the next version.
10
11 ----
12 CategoryNetworking