Sign in Sign up
rubygems

torid

Temporally Ordered IDs. Generate universally unique identifiers (UUID) that sort lexically in time order. Torid exists to solve the problem of generating UUIDs that when ordered lexically, they are also ordered temporally. I needed a way to generate ids for events that are entering a system with the following criteria: 1. Fast ID generation 2. No central coordinating server/system 3. No local storage 4. Library code, that is multiple apps on the same machine can use the same code and they will not generate duplicate ids 5. Eventually stored in a UUID field in a database. So 128bit ids are totally fine. The IDs that Torid generates are 128bit IDs made up of 2, 64bit parts. * 64bit microsecond level UNIX timestamp * 64bit hash of the system hostname, process id and a random value.

Activity

Latest release
9y ago
Total releases
9
Cadence
~29 days
Last 12 months
0

Details

License
ISC
First release
Jul 08, 2014
Releases
Version Released
1.3.0 minor
1.2.5 patch
1.2.4 patch
1.2.3 patch
1.2.2 patch
1.2.1 patch
1.2.0 minor
1.1.0 minor
1.0.0 initial