Alternatives to Protocol Buffers [closed]
Asked Answered
K

4

16

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?

Kerbing answered 29/5, 2010 at 14:54 Comment(0)
R
15

You can look at http://msgpack.org/

Rifkin answered 4/10, 2011 at 20:12 Comment(0)
M
6

Maybe thrift would do. http://thrift.apache.org/

Menendez answered 21/9, 2012 at 21:26 Comment(0)
M
0

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).

http://kentonv.github.io/capnproto/

Marijuana answered 11/8, 2014 at 7:34 Comment(1)
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
C
0

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)

Chondrule answered 13/1, 2020 at 8:43 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.