FastID is a pluggable unique ID generator in Go.
- Under 64 bits (Long Integer)
- K-Ordered
- Lock-free (using atomic CAS)
- Decentralized
go get github.com/beinan/fastid
Generate an ID
import (
"fmt"
"github.com/beinan/fastid"
)
func ExampleGenInt64ID() {
id := fastid.CommonConfig.GenInt64ID()
fmt.Printf("id generated: %v", id)
}
- 40 bits timestamp (34 years from 2018-06-01)
- 16 bits machine ID (using lower 16 bits of IP v4 addr as default)
- 7 bits sequence number
With this setting, FastID is able to generate 128(2^7) unique IDs per millisecond (1.048576 millisecond, 2^10 nanosecond).
See the examples in GoDoc
- 40 bits timestamp (34 years from 2018-06-01)
- 8 bits machine ID
- 15 bits sequence number
go test -bench=.
goos: linux
goarch: amd64
pkg: github.com/beinan/fastid
BenchmarkGenID-4 20000000 79.7 ns/op
BenchmarkGenIDP-4 20000000 141 ns/op
PASS
ok github.com/beinan/fastid 4.779s