MongoDB client for OCaml

mongodb, ocaml

Solution

Philippe Veber said on the mailing-list that he was looking for something, but apparently hasn't published code. You should contact him to ask him feedback.

I would go for the existing binding you're pointing at, and extend it. Some of the heavy lifting is already done, and it has the advantage of not forcing you to interact with C code (which is never a nice experience imho).

Problem

I can't find a MongoDB client library for OCaml, is there one? I found something on github, but it doesn't look maintained. I thought the next best option was to use camlidl to try and wrap the C mongo client (libmongo-client), but wondered if someone else had done this already?

Original source