You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bincode is fast and compact, but it's very sensitive to schema changes. If our Value / DataType enum changes, the schema might break, which means we need to build a sometimes quite complex migration.
Messagepack
Self describing, which means no external schema needed
A bit less fast and efficient than bincode as it's self-describing.
Protobuf
Requires an external schema, which we could probably build in some folder using build.rs