A Rust library to generate numeric identifiers.
The canonical source of this repository is hosted on GitHub. If you have a GitHub account, please make your issues, and pull requests there.
Add to your Cargo.toml
file:
toml
[dependencies]
combid = "^0.5"
rand = "^0.3"
and to your crate root:
rust
extern crate combid;
extern crate rand;
The benefits of a standard autoincrementing integer are:
An UUID is a 16-byte (128-bit) data structure whose advantages over autoincrementing integers are:
A COMB is a type of UUID where a number of bits have been replaced with a timestamp-like value. This means that the COMBs can be ordered, and when used as a primary key result in less index page splits when inserting new values.
INTs are 4 bytes, BIGINTs ar 8 bytes, and GUIDS are 16 bytes. The more space required to represent the data, the more resources required to process it (disk space, memory).
Combids are 4 or 8 bytes. The first array of bytes is a timestamp, which both reduces the chance of collision and allows the IDs created consecutively to sort chronologically. The timestamp is followed of some bits for randomness, which ensures that even two people creating IDs at the exact same second are extremely unlikely to generate identical IDs:
The advantages over anterior identifiers:
© 2016 Jonas mg See the 'AUTHORS.md' file for a full list of authors.
The source files are distributed under the terms of the license Mozilla Public License, version 2.0
The test scripts and snippets of code used in documentation are dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/