I'd like a basic message passing/RPC system. I could use a serialisation system but I want some sort of verification to ensure both ends are synchronised. I've looked at Google Protocol Buffers, but I'm not too keen on code generation. What are other alternatives?
Alternatives to Protocol Buffers [closed]
Asked Answered
Cap'n Proto, which is designed by Kenton Varda, who worked for Google as the primary author of Protocol Buffers version 2 (the open source one now everybody uses). It has a feature called "time travel" that worths looking (a feature that makes round trips for fetching dependent data to and from server into one trip).
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. –
Sabra
I really love Cap’n Proto!
Awesome serialization + RPC capabilities, open source, great schema language...
(Authored by Kenton Varda, the primary author of Protocol Buffers version 2)
© 2022 - 2024 — McMap. All rights reserved.