diff --git a/README.md b/README.md index 0b7b61b..74f1288 100644 --- a/README.md +++ b/README.md @@ -227,10 +227,13 @@ achieve by themselves. These are summarized below: 1) Deduplication : Per-Chunk (or per-segment) deduplication based on Rabin fingerprinting. + 2) LZP : LZ Prediction is a variant of LZ77 that replaces repeating runs of text with shorter codes. + 3) Adaptive Delta : This is a simple form of Delta Encoding where arithmetic progressions are detected in the data stream and collapsed via Run-Length encoding. + 4) Matrix Transpose: This is used automatically in Delta Encoding and Deduplication. This attempts to transpose columnar repeating sequences of bytes into row-wise sequences so that compression algorithms can work better.