Delta compression
From Biocrawler, the free encyclopedia.
In software configuration management (SCM), a "delta" is a type of file in which the difference (or diff) between two successive versions, is recorded. This term suggests that differences should be small (2% different in average). So, using it can vastly reduce the amount of storage required.
A delta can be defined in 2 ways,symmetric delta and directed delta.
A symmetric delta can be expressed as
, where v1 and v2 represent two successive versions.
A directed delta, also called a change, is a sequence of (elementary) change operations which, when applied to one version v1, yields another version v2. (note the correspondence to transaction logs in datbases).
[edit]

