Crates.io | bytekey-fix |
lib.rs | bytekey-fix |
version | 0.5.1 |
source | src |
created_at | 2020-10-09 10:30:40.567445 |
updated_at | 2021-04-09 19:28:24.229976 |
description | lexicographic sort-order preserving binary encoding |
homepage | |
repository | https://github.com/semtexzv/bytekey.git |
max_upload_size | |
id | 297575 |
size | 71,483 |
Binary encoding for Rust values which preserves lexicographic sort order.
Order-preserving encoding is useful for creating keys for sorted key-value
stores with byte string typed keys, such as
leveldb and
sled. bytekey
attempts to encode values
into the fewest number of bytes possible while preserving order guarantees. Type
information is not serialized alongside values, and thus the type of
serialized data must be known in order to perform decoding (bytekey
does not
implement a self-describing format).
bytekey
currently supports all Rust primitives, strings, options, structs,
enums, vecs, and tuples. See Serializer for details on the serialization
format.
#[macro_use]
extern crate serde_derive;
extern crate bytekey;
use bytekey::{deserialize, serialize};
#[derive(Debug, PartialEq, Serialize, Deserialize)]
struct MyKey { a: u32, b: String }
fn main() {
let a = MyKey { a: 1, b: "foo".to_string() };
let b = MyKey { a: 2, b: "foo".to_string() };
let c = MyKey { a: 2, b: "fooz".to_string() };
assert!(serialize(&a).unwrap() < serialize(&b).unwrap());
assert!(serialize(&b).unwrap() < serialize(&c).unwrap());
assert_eq!(a, deserialize(&serialize(&a).unwrap()).unwrap());
}
In general, the exact type of a serialized value must be known in order to correctly deserialize it. For structs and enums, the type is effectively frozen once any values of the type have been serialized: changes to the struct or enum will cause deserialization of already serialized values to fail or return incorrect values. The only exception is adding new variants to the end of an existing enum. Enum variants may not change type, be removed, or be reordered. All changes to structs, including adding, removing, reordering, or changing the type of a field are forbidden.
These restrictions lead to a few best-practices when using bytekey
serialization:
bytekey
unless you need lexicographic ordering of serialized
values! A more general encoding library such as Cap'n
Proto or
bincode will serve you better if
this feature is
not necessary.bytekey
is licensed under the Apache License, Version 2.0. See LICENSE for
full license text.