Protocol Buffers is a language-neutral and platform-neutral way of encoding structured data in an efficient yet extensible format.
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-listHow can be an array of double (1D) stored using protocol buffer? What about multi-dimensional (2D or 3D) dense arrays?
c++ multidimensional-array protocol-buffersCorrect 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-computingTrying 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-netI am using Google Protobuf using java. I wrote a statement like optional repeated string users = 9; When I tried to …
java protocol-buffersIs Protocol Buffer for .NET gonna be lightweight/faster than Remoting(the SerializationFormat.Binary)? Will there be a first class …
c# remoting protocol-buffersI have this small protobuf code (simplified, only the necessary is contained): message ParamsMessage { required int32 temperature = 1; } message MasterMessage { enum …
c++ protocol-buffersIn 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-portI 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 protocI want an extremely efficient TCP client to send google protocol buffer messages. I have been using the Netty library …
tcp protocol-buffers netty