Top "Protocol-buffers" questions

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

Can I define a grpc call with a null request or response?

Does the rpc syntax in proto3 allow null requests or responses? e.g. I want the equivalent of the following: …

protocol-buffers grpc
How do I get Eclipse to resolve classes generated with Maven 2?

I'm using Google Protocol Buffers to generate some Java classes for my project. Using Maven 2 and its "antrun" plugin, these …

eclipse maven-2 code-generation protocol-buffers
Google Protocol Buffers: JavaScript Example

Is it a good choice to use Google Protocol Buffers in JavaScript or is it better to do it with …

javascript protocol-buffers
How to assign to repeated field?

I am using protocol buffers in python and I have a Person message repeated uint64 id but when I try …

python protocol-buffers
High performance serialization: Java vs Google Protocol Buffers vs ...?

For some caching I'm thinking of doing for an upcoming project, I've been thinking about Java serialization. Namely, should it …

java serialization caching protocol-buffers
Install Protocol Buffers on Windows

I am unable to find clear instructions to install Google Protocol Buffers (including compiler) on Windows x64 platform. I went …

java windows cygwin mingw protocol-buffers
What does the protobuf text format look like?

Google Protocol Buffers can not only be serialized in binary format, also be serialized as text. However I can't easily …

serialization text protocol-buffers
Protobuf cannot find shared libraries

I have installed protobuf by using following commands: ./configure make make check make install However when I run protoc I …

protocol-buffers
Protobuf to json in python

I have an object that I de-serialize using protobuf in Python. When I print the object it looks like a …

python json protocol-buffers
Error using import in .proto file

I tried importing a proto file named test1.proto to another proto file named test2.proto using the import statement …

import protocol-buffers