msgpack
riegeli
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
msgpack
- SQLite needs testers for the new binary JSON format
-
Salt Exporter: the story behind the tool
I also read that Salt was using MessagePack to format their messages. MessagePack is a format like JSON, but more compact.
- Add extra stuff to a “standard” encoding? Sure, why not
- MessagePack: It's like JSON, but fast and small
-
mus-go - the fastest Golang serializer today
Sorry, but I don't think it looks like MessagePack. I wonder why you think so? MUS format does not contain a data types, unlike MessagePack. So, for example, the uint8 type in MessagePack can be encoded with two bytes (from the MessagePack specification): uint 8 stores a 8-bit unsigned integer +--------+--------+ | 0xcc |ZZZZZZZZ| +--------+--------+ The same data type in MUS format is encoded with just one byte. This fact alone is quite a significant difference.
riegeli
-
Add extra stuff to a “standard” encoding? Sure, why not
> didn’t find any standard for separating protobuf messages
The fact that protobufs are not self-delimiting is an endless source of frustration, but I know of 2 standards:
- SerializeDelimited* is part of the protobuf library: https://github.com/protocolbuffers/protobuf/blob/main/src/go...
- Riegeli 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": https://github.com/google/riegeli
What are some alternatives?
salt-exporter - Salt Prometheus exporter working out of the box without any configuration on Salt side. Comes with an event watcher TUI.
quick-protobuf - A rust implementation of protobuf parser
protobuf-conformance - A repository running the Protobuf conformance tests against various libraries
mqtt-exporter - Simple generic MQTT Prometheus exporter for IoT working out of the box
Protobuf - Protocol Buffers - Google's data interchange format
go-client - Nvim Go client
ntfy - Send push notifications to your phone or desktop using PUT/POST
zoa - serialized structured data and it's textual representation
protobuf - Protocol Buffers for JavaScript & TypeScript.
go_serialization_benchmarks - Benchmarks of Go serialization methods
go-codec-bench - Benchmark of go binary and text encodings