Build Status

rustdoc

Unmaintained original package

bytekey

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).

Supported Data Types

bytekey currently supports all Rust primitives, strings, options, structs, enums, vecs, and tuples. See Serializer for details on the serialization format.

Usage

```rust

[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".tostring() }; let b = MyKey { a: 2, b: "foo".tostring() }; let c = MyKey { a: 2, b: "fooz".tostring() }; assert!(serialize(&a).unwrap() < serialize(&b).unwrap()); assert!(serialize(&b).unwrap() < serialize(&c).unwrap()); asserteq!(a, deserialize(&serialize(&a).unwrap()).unwrap()); } ```

Type Evolution

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:

License

bytekey is licensed under the Apache License, Version 2.0. See LICENSE for full license text.