Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Federated (Synced) Subversion servers?

Tags:

Is it possible to create "federated" Subversion servers? As in one server at location A and another at location B that sync up their local versions of the repository automatically. That way when someone at either location interacts with the repository they are accessing their respective local server and therefore has faster response times.

like image 654
Adam Haile Avatar asked Aug 05 '08 01:08

Adam Haile


1 Answers

Subversion 1.5 introduced write through proxy support for webdav servers over the existing SvnSync support that was added in 1.4. This allows you to have local mirrors for retrieving files and history, but commits are committed directly to the master repository. If setup correctly the local mirrors receive the changes immediately.

See the Svn Book for more details.

like image 119
Bert Huijben Avatar answered Oct 20 '22 15:10

Bert Huijben