blob: 4d39d340d65ae3d2fa87c9dc527575489bd6af17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
This port provides an implementation of ULID.
A ULID is a universally unique lexicographically sortable identifier. It is
- 128-bit compatible with UUID
- 1.21e+24 unique ULIDs per millisecond
- Lexicographically sortable!
- Canonically encoded as a 26 character string, as opposed to the 36 character
UUID
- Uses Crockford's base32 for better efficiency and readability (5 bits per
character)
- Case insensitive
- No special characters (URL safe)
|