#id-generator #distributed-id #id #snowflake-id #generator #snowflake #random

sonyflake

A distributed unique ID generator inspired by Twitter's Snowflake

4 releases

0.2.0 Jun 22, 2023
0.1.2 Sep 11, 2021
0.1.1 Dec 29, 2020
0.1.0 Dec 29, 2020

#2003 in Algorithms

Download history 318/week @ 2023-12-12 359/week @ 2023-12-19 242/week @ 2023-12-26 577/week @ 2024-01-02 237/week @ 2024-01-09 252/week @ 2024-01-16 257/week @ 2024-01-23 382/week @ 2024-01-30 109/week @ 2024-02-06 170/week @ 2024-02-13 623/week @ 2024-02-20 526/week @ 2024-02-27 564/week @ 2024-03-05 514/week @ 2024-03-12 527/week @ 2024-03-19 710/week @ 2024-03-26

2,410 downloads per month

MIT/Apache

20KB
400 lines

sonyflake-rs

Build crates.io docs.rs License

A distributed unique ID generator inspired by Twitter's Snowflake.

This is a Rust implementation of the original sony/sonyflake, which is written in Go.

A Sonyflake ID is composed of

  • 39 bits for time in units of 10 msec
  • 8 bits for a sequence number
  • 16 bits for a machine id

Install

Add the following to your Cargo.toml:

[dependencies]
sonyflake = "0.2"

Quickstart

use sonyflake::Sonyflake;

let sf = Sonyflake::new().unwrap();
let next_id = sf.next_id().unwrap();
println!("{}", next_id);

Benchmarks

Benchmarks were run on a MacBook Pro (15-inch, 2017) with a 2,8GHz i7 and 16 GB memory. Run them yourself with cargo bench.

test bench_decompose ... bench:       1,066 ns/iter (+/- 132)
test bench_new       ... bench:     738,129 ns/iter (+/- 318,192)
test bench_next_id   ... bench:      37,390 ns/iter (+/- 499)

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~4–5.5MB
~97K SLoC