is there a BSON serializer/deserializer library out there for PHP or Java?
Thanks
|
feedback
|
|
You might check the MongoDB drivers for those languages, since MongoDB uses BSON. See what they use, or steal their implementation. | |||
|
feedback
|
|
Another possibility is BSON4Jackson extension for Jackson, which adds support for BSON reading/writing. | |||
|
feedback
|
|
Not for Java, but here's one for Obj-C: https://github.com/martinkou/bson-objc/ | |||
|
feedback
|
|
BSON encoder/decoder in Java is pretty trivial. The following snippet of code is from my app, so it's in Scala. I am sure you could build a Java implementation from it easily.
The only significant note is that | |||
|
feedback
|