A few words on DRBD and user space - kernel interfaces
A few words on DRBD and user space - kernel interfaces
Posted Oct 20, 2009 19:18 UTC (Tue) by valyala (guest, #41196)In reply to: A few words on DRBD and user space - kernel interfaces by philipp
Parent article: Infrastructure unification in the block layer
Here is a list of protobuf features.
- protobuf messages are designed to be extensible and backwards-compatible;
- protobuf encoding is architecture-independent;
- protobuf encoding is space-efficient;
- protobuf encoding is quite simple ( http://code.google.com/apis/protocolbuffers/docs/overview... ), so it is easy to write cpu-efficient codecs with small footprint in arbitrary language;
- protobuf messages can contain another protobuf messages;
- .proto files can include another .proto files;
- encoded protobuf messages can be easily stored to files (space-efficient binary logs), which then can be easily decoded into human-readable text by universal decoders using corresponding .proto definitions;
- according to the http://code.google.com/p/protobuf/ , "Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats" ;)
