Delta Encoding
Why not store the raw
Data Model
syntax = "proto3";
package delta.pb;
message Delta {
// Parent reference if null the delta is considered as new
bytes Parent = 1;
// Compressed delta data
bytes Data = 2;
// Allows to definine the strategy of encoding/decoding data
uint8 Codec = 3
}Codecs
Last updated