-
Notifications
You must be signed in to change notification settings - Fork 1
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
Replace flatbuffers by protocolbuffers/prost #15
Comments
Also, rkyv is interesting. |
holtgrewe
changed the title
Evalute bincode as flatbuffers alternative
Replace flatbuffers by protocolbuffers/prost
Apr 21, 2023
The the rust serialization benchmark, it looks like prost is a very promising alternative. First of all, we get protocolbuffers goodness with schema evolution (in principle). Further, other languages would be able to also read our files. |
holtgrewe
added a commit
that referenced
this issue
Apr 21, 2023
holtgrewe
added a commit
that referenced
this issue
Apr 21, 2023
holtgrewe
added a commit
that referenced
this issue
Apr 24, 2023
holtgrewe
added a commit
that referenced
this issue
Apr 24, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While flatbuffers allows to load data only partially, this does not really work when having to put it into an
Rc<...>
for passing it to thehgvs
library.By this benchmark we should evaluate the bincode crate as well.
The text was updated successfully, but these errors were encountered: