Adding full BSON support #2316
bazile-clyde
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
I am afraid this library cannot provide "full" BSON support, because the library is centered around JSON which does not know all the types you mention. If we would add them to What I could think of would be parsing these types into a binary value using the type byte as subtype. What do you think? Would this already be an improvement compared to the status quo. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@nlohmann, I'm interested in using this library to improve the usability of MongoDB's C++ Driver. This would require support for all BSON types. Currently, it looks like that'd mean adding support for the following types (let me know if I've missed anything):
I'm scoping out the amount of work I'll need to do and it seems like each type would require about as much effort as adding support for the binary type (here).
Are there any major issues I should know about before embarking on this journey?
Beta Was this translation helpful? Give feedback.
All reactions