I need a disk serialization format which:
Supports utf8 or binary data
Supports multiple messages per file (like newline delimited json)
(possibly) Is schemaless
(possibly) Has both a node and a rust implementation
I couldn't find a way for msgpack or CBOR to support multiple messages per file in go, although it's supported by cbor (sequences). At the moment I'm playing with asn.1 and it seems nice but I was wondering if there was a better alternative.