bytekey 0.4.2

lexicographic sort-order preserving binary encoding
docs.rs failed to build bytekey-0.4.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Build Status

rustdoc

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. 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 encoding currently supports all Rust primitives, strings, options, structs, enums, and tuples. isize and usize types are variable-length encoded. Sequence (Vec) and map types are not currently supported (but could be in the future). See Encoder for details on the serialization format.

Usage

extern crate serialize;
extern crate bytekey;
use bytekey::{encode, decode};

#[deriving(Encodable, Decodable, Show, PartialEq)]
struct MyKey { a: usize, b: String }

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!(encode(&a) < encode(&b));
assert!(encode(&b) < encode(&c));
assert_eq!(a, decode(encode(&a)).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 encoded values to fail or return incorrect values. The only exception is adding 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 encoding:

  • Don't use bytekey unless you need lexicographic ordering of encoded values! A more general encoding library such as Cap'n Proto or binary-encode will serve you better if this feature is not necessary.
  • If you persist encoded values for longer than the life of a process (i.e. you write the encoded values to a file or a database), consider using an enum as a top-level wrapper type. This will allow you to seamlessly add a new variant when you need to change the key format in a backwards-compatible manner (the different key types will sort seperately). If your enum has less than 16 variants, then the overhead is just a single byte in encoded output.

License

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