-
Notifications
You must be signed in to change notification settings - Fork 524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[C++] JSON serialization #718
Comments
This is not something we make use of. Feel free to send a PR to address it. |
There is no builtin JSON serialization in the C++ codecs is there? |
@rigtorp there is JSON-like serialization. Serialization code don't escape JSON control chars in strings. |
I think better solution to have something like exists in |
…d use it pretty printing plus give a summary of raw binary data rather than trying to print. Issue #718.
I've pushed a change which will Json escape var data strings in UTF-8 or ASCII will is a subset and this is use for the pretty printing. Raw binary will be summarised as "x bytes of raw data". |
Hello SBE devs!
SBE codec is not escapes characters reserved by JSON during serialization.
It produces invalid JSON in cases when symbols like
"
present in text fields.Thanks
The text was updated successfully, but these errors were encountered: