CVSup

From Wikipedia, the free encyclopedia

CVSup is a computer program that synchronizes files and directories from one location to another while minimizing data transfer using file-type specific delta encoding when appropriate. CVSup was designed for keeping source code repositories - such as CVS - synchronized, but has been extended to support synchronizing any type of file.

In some manners, CVSup operates similarly to the rsync program, with some notable differences. CVSup attempts to balance data transfer in each direction, rather than most of the data being transferred from the server to the client. It attempts to balance CPU and disk utilization server to the client. It also uses delta algorithms specific to the file being synchronized. For example, files within a CVS repository extend and grow in a particular way. CVSup, when it recognizes a CVS file, will adopt its algorithm to take advantage of this and reduce the number of data transferred. Many other types of files have a specific support, and a generic algorithm is used where no specific support exists. CVSup will only 'pull' data from the remote server.

CVSup can use the ".zlib" compression package to compress all transferred data. CVSup, written in Modula-3 programming language, was conceived and developed by John Polstra.

[edit] External links