-
Notifications
You must be signed in to change notification settings - Fork 10
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
Implement BSON serialisation #19
Comments
One annoying thing is that help?> bson
search: bson BSON SubstitutionString AbstractIrrational AbstractFloat BoundsError
No documentation found.
BSON.bson is a Function.
# 3 methods for generic function "bson" from BSON:
[1] bson(path::String; kws...)
@ ~/.julia/packages/BSON/mzJoC/src/write.jl:89
[2] bson(path::String, doc::AbstractDict)
@ ~/.julia/packages/BSON/mzJoC/src/write.jl:87
[3] bson(io::IO, doc::AbstractDict)
@ ~/.julia/packages/BSON/mzJoC/src/write.jl:85 A easy workaround is convert I also want to ask, currently we have no implementation of outputting binary format. Should we just output |
It would be nice if you could provide some use cases for serialization and deserialization, sounds like converting yaml to bson? I'm a little confused. |
Hi, again! That's what I had in mind. Just have some sort of a workaround to work with BSON.jl package for now. As for use cases, the most common is web development, where you want to send data more efficiently or work with binary data formats, so streaming is to a file is not really needed at the current stage so working with |
Implement BSON serialisation
Description
BSON serialisation is currently marked as 'planned' in our project. This feature is crucial for users who work with YAML data formats and expect our tool to support serialisation to BSON
Tasks
The text was updated successfully, but these errors were encountered: