Top "Protocol-buffers" questions

Protocol Buffers is a language-neutral and platform-neutral way of encoding structured data in an efficient yet extensible format.

Google Protocol Buffers and HTTP

I'm refactoring legacy C++ system to SOA using gSoap. We have some performance issues (very big XMLs) so my lead …

java c++ http protocol-buffers
Protocol Buffers versus JSON or BSON

Does anyone have any information on the performance characteristics of Protocol Buffers versus BSON (binary JSON) or versus JSON in …

c# json comparison protocol-buffers bson
How to add a int array in protobuf message

I have to compose a protobuf message which should have 1 integer variables and a integer array. package protobuf; message myProto { …

java serialization protocol-buffers
Handling null values in protobuffers

I am working on something which fetches data from database and constructs protobuff message. Given the possibility that null values …

java null protocol-buffers
How to convert from Json to Protobuf?

I'm new to using protobuf, and was wondering if there is a simple way to convert a json stream/string …

java json protocol-buffers
Unable to build protobuf to go endpoint

using protobuf version 2.6.1 ( which i installed via homebrew) I am trying to run $ protoc --go_out=../cloud/ *.proto I keep …

go protocol-buffers
Importing caffe results in ImportError: "No module named google.protobuf.internal" (import enum_type_wrapper)

I installed Anaconda Python on my machine. When I start the Python Interpreter and type "import caffe" in the Python …

python caffe protocol-buffers
How to decode binary/raw google protobuf data

I have a coredump with encoded protobuf data and I want to decode this data and see the content. I …

serialization protocol-buffers
what's the right way to do polymorphism with protocol buffers?

I'm trying to long-term serialize a bunch of objects related by a strong class hierarchy in java, and I'd like …

protocol-buffers
What's the difference between Protocol Buffers and Flatbuffers?

Both are serialization libraries and are developed by Google developers. Is there any big difference between them? Is it a …

protocol-buffers flatbuffers