kvend
Kvend is a compact binary serialization format designed for transmitting sequences of key-value pairs in resource-constrained environments. It aims to minimize overhead by encoding each key-value pair as a compact, length-prefixed binary record within a continuous stream, enabling efficient parsing and incremental processing.
A kvend record consists of a length field for the key, the key bytes, a length field
Variants and implementations exist in various projects. Some proposals describe a kvend-lite variant for very small
Kvend is commonly contrasted with text-based formats like JSON, which are human readable but heavier to parse,
Origin and status: Kvend emerged in open-source discussions in the early 2020s as a lightweight alternative