| commit | e1b2fedf24735a1221f44cd01a6d0d79a522d5aa | [log] [tgz] |
|---|---|---|
| author | Marcin Kowalczyk <qrczak@google.com> | Wed Jan 21 20:02:16 2026 +0100 |
| committer | qrczak <qrczak@google.com> | Wed Jan 21 20:03:09 2026 +0100 |
| tree | 57be1ad4aee1d4b9e3ae66cfd03ab25fd919d4bf | |
| parent | 2718295fe739faa70086b8713a8998842defdd2c [diff] |
Add `DynamicFieldHandler`, a field handler for `SerializedMessageReader2` for a single field, with the field number specified at runtime. `DynamicFieldHandler` is similar to a `FieldHandlerMap` with a single registered field handler, but more efficient and without type erasure. PiperOrigin-RevId: 859177634
Riegeli/records is a file format for storing a sequence of string records, typically serialized protocol buffers. It supports dense compression, fast decoding, seeking, detection and optional skipping of data corruption, filtering of proto message fields for even faster decoding, and parallel encoding.
See documentation.
Riegeli file format will only change in a backward compatible way (i.e. future readers will understand current files, but current readers might not understand files using future features).
Riegeli C++ API might change in incompatible ways.