Google Protocol Buffers

Protobuf-net (Protocol Buffers for C#)のドキュメント

なぜかオフィシャルのドキュメントが、ほぼ無いに等しいProtobuf-netのUnofficialなドキュメントの紹介。 (英語です)http://www.codeproject.com/Articles/642677/Protobuf-net-the-unofficial-manual

MongoDBのScheme定義をProtocol Buffersで定義する in C#

MongoDBとProtobuf-netは相性が良いかもしれない? protobuf-netのprotogenで出力したclassは 普通にそのままMongoDB Official C# DriverのSchemaとして利用できる。 .protoの内容 message Person { required int32 id = 1; required string name = 2; optio…

Google Protocol Buffers + Pythonから使う

Google Protocol BuffersをPythonから使う 取得 以下から最新の[compiler]と[full source]を両方取得してくる。https://code.google.com/p/protobuf/downloads/listソースを適当に展開したら「protobuf-x.x.x/src」に、Compilerを展開して得られる「protoc.e…