We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Store
Currently the Store stores objects of type Vec<u8>. This forces us to serialize/deserialize Rust types before putting them in a Store.
Vec<u8>
Rust
We should investigate supporting storing predefined Rust types for well-known paths, avoiding the serialization/deserialization cost.
Related: #40
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the
Store
stores objects of typeVec<u8>
. This forces us to serialize/deserializeRust
types before putting them in aStore
.We should investigate supporting storing predefined Rust types for well-known paths, avoiding the serialization/deserialization cost.
Related: #40
The text was updated successfully, but these errors were encountered: