Koen De KeyserI've worked with Piqi, converting a project that was using custom serialization to Protobuf. This was a fairly pleasant experience: the main developer was very responsive and the code base for the code generator is sufficiently clean that it made adding custom functionality quite easy.The main reason I went with Piqi is the code generation functionality: one of the main reasons to adopt something like Protobuf is the possibility of generating code in a multitude of languages (e.g. Python for scripting / testing purposes) from a single definition file (the proto file in this case). Any change there is automatically picked up by the build process in all of the languages, so your code stays in sync across languages. This is not the case if the definition of the struct is in Ocaml itself.On Wed, Feb 25, 2015 at 5:58 PM, Trevor Smith <trevorsummerssmith@gmail.com> wrote:Hello,Is anyone out there using OCaml with Protobufs? If so, what library/tools are you using, and how do you like the setup? Also, are you using Protobufs in a production setting?I found online but have not used any of the below myself:1) piqi - http://piqi.org/2) obitz - https://github.com/orbitz/ocaml-protobuf3) whitequark's protobufs - https://github.com/orbitz/ocaml-protobufCurious to hear your experiences. Thank you.Trevor