Top "Protocol-buffers" questions

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

How to handle the generic type Object with protocol buffers, in the .proto file?

I've spent some time looking for some alternative to handle generic objects, I've seen questions similar to mine, but not …

object protocol-buffers generic-list
protocol buffers - store an double array, 1D, 2D and 3D

How can be an array of double (1D) stored using protocol buffer? What about multi-dimensional (2D or 3D) dense arrays?

c++ multidimensional-array protocol-buffers
Why isn't Hadoop implemented using MPI?

Correct me if I'm wrong, but my understanding is that Hadoop does not use MPI for communication between different nodes. …

tcp hadoop protocol-buffers mpi distributed-computing
How do I generate a .proto file from a C# class decorated with attributes?

Trying to get my mind around google protobuf. I found some implementation of protobuf in C# but they seems to …

c# .net serialization protocol-buffers protobuf-net
'optional repeated' with google protobuf for Java

I am using Google Protobuf using java. I wrote a statement like optional repeated string users = 9; When I tried to …

java protocol-buffers
How fast or lightweight Is Protocol Buffer?

Is Protocol Buffer for .NET gonna be lightweight/faster than Remoting(the SerializationFormat.Binary)? Will there be a first class …

c# remoting protocol-buffers
Protobuf: Will set_allocated_* delete the allocated object?

I have this small protobuf code (simplified, only the necessary is contained): message ParamsMessage { required int32 temperature = 1; } message MasterMessage { enum …

c++ protocol-buffers
Google Protobuf 3.0.0 assemblies for C#

In our project we successfully use Google Protobuf for C++. Now there is a need to compile the same *.proto …

c# .net assemblies protocol-buffers protobuf-csharp-port
How to import gRPC empty and Google api annotations proto

I am trying to use Google Cloud Endpoints to make a gRPC based api that can transcode incoming REST requests. …

google-cloud-platform protocol-buffers google-cloud-endpoints grpc protoc
How to write a high performance Netty Client

I want an extremely efficient TCP client to send google protocol buffer messages. I have been using the Netty library …

tcp protocol-buffers netty