Top "Protocol-buffers" questions

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

Protocol Buffer Error on compile during GOOGLE_PROTOBUF_MIN_PROTOC_VERSION check

I'm currently getting an error which points me to these lines in the header file produced by protoc: #if 2006001 < …

c++ protocol-buffers protoc
Protocol buffers in C# projects using protobuf-net - best practices for code generation

I'm trying to use protobuf in a C# project, using protobuf-net, and am wondering what is the best way to …

c# visual-studio protocol-buffers protobuf-net
Generate Protobuf documentation?

Does anyone know of a good tool to generate Google Protobuf documentation using the .proto source files?

documentation protocols protocol-buffers documentation-generation
Deserialize unknown type with protobuf-net

I have 2 networked apps that should send serialized protobuf-net messages to each other. I can serialize the objects and send …

c# serialization protocol-buffers protobuf-net
Protocol buffers and enums combinations?

This is my proto file : message MSG { required MsgCodes MsgCode = 1; optional int64 Serial = 2; // Unique ID number for this person. required …

java c# enums protocol-buffers protobuf-csharp-port
How to build Google's protobuf in Windows using MinGW?

I'm using Codeblocks as my IDE with MingGW. I'm trying to use google protocol buffers, but I'm having trouble building …

c++ mingw protocol-buffers
Extending Protobuf Messages

I have many different schemas, however there are a set of fields which every schema contains. I was wondering if …

inheritance serialization protocol-buffers extends
What's the best serialization method for objects in memcached?

My Python application currently uses the python-memcached API to set and get objects in memcached. This API uses Python's native …

python serialization xml-serialization memcached protocol-buffers
how do has_field() methods relate to default values in protobuf?

I'm trying to determine the relationship between default values and the has_foo() methods that are declared in various programmatic …

protocol-buffers
What is the best approach for serializing BigDecimal/BigInteger to ProtocolBuffers

I am starting to migrate a custom serialization mechanism to Protocol Buffers. One data type that will be used particularly …

java protocol-buffers