idgenerator-thin 0.2.1

Shorter ID and faster generation with a new snowflake drift algorithm. The core is to shorten the ID length, but also can have a very high instantaneous concurrent processing capacity (50W/0.1s), and powerful configuration capacity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod default_id_generator;
mod yit_id_helper;
mod snow_worker_m1;
mod id_generator_options;
mod i_snow_worker;

use snow_worker_m1::SnowWorkerM1;

pub use yit_id_helper::YitIdHelper;
pub use default_id_generator::DefaultIdGenerator;
pub use id_generator_options::IdGeneratorOptions;
pub use i_snow_worker::ISnowWorker;