CSUUID
This struct wraps up a UUID that encodes a timestamp measured as seconds from the epoch (0001-01-01 00:00:00.0 UTC)
observed at the location where the timestamp was generated, plus nanoseconds in the current second, plus 6 bytes for unique identification of the source -- this could be an IPV4 address with two null bytes, a MAC address, or some other sequence that will fit in 6 bytes.
Nanoseconds will fit in an Int32 (4 bytes), but seconds since the epoch will not. The current number of seconds leaks a short distance into a 5th byte, meaning that in this class, it has to be represented by an Int64. This is problematic because a UID allows for 16 bytes, so the use of 8 for seconds and 4 for nanoseconds leaves only 4 bytes for system identification. It also leaves three bytes in the UUID as zeros because 8 bytes for seconds is a lot of seconds.
One solution is to combine the seconds and the nanoseconds into a single Int64 number. This requires math operations to do efficiently:
(seconds * 1000000000) + nanoseconds
and then more math to extract the original numbers in order to reconstruct the original timestamp. This leaves 8 bytes for identification or other uniqueness information, which is lovely, but the math requirement is less lovely.
The other options is to truncate 2 bytes off of the seconds, storing 6 bytes of seconds data. This leaves 6 bytes for identification.
The current implementation chose option #2, as it is less work to generate a UUID if math is not involved.
+-------------+-----------------+------------+
| nanoseconds | seconds | identifier |
| 0..3 | 4..10 | 11..15 |
+-------------+-----------------+------------+
Benchmarks
CSUUID currently benchmarks to be much faster than the standard Crystal UUID class, as of Crystal 1.1.1. See below for some benchmarks.
- Dell XPS 15 - Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz 2.40 GHz - 32GB RAM
- Ubuntu 20.04 on WSL1
- Crystal 1.1.1; LLVM: 10.0.1
CSUUID.new -- generate random, chronologically sortable UUID 2.78M (359.78ns) (± 2.41%) 48.0B/op fastest
UUID.random -- generate random UUID 1.07M (937.03ns) (± 2.27%) 0.0B/op 2.60× slower
CSUUID.unique -- generate 100 guaranteed unique, sortable IDs 27.48k ( 36.39µs) (± 2.37%) 4.7kB/op fastest
UUID.new -- generate 100 random UUIDs 10.69k ( 93.58µs) (± 2.06%) 0.0B/op 2.57× slower
- Alienware Aurora R11 - Intel(R) Core(TM) i9-10900KF CPU @ 3.70GHz 3.70 GHz - 128GB RAM
- Ubuntu 20.04 on WSL2
- Crystal 1.1.1; LLVM: 10.0.1
CSUUID.new -- generate random, chronologically sortable UUID 6.09M (164.22ns) (± 1.21%) 48.0B/op fastest
UUID.random -- generate random UUID 3.41M (292.86ns) (± 2.46%) 0.0B/op 1.78× slower
CSUUID.unique -- generate 100 guaranteed unique, sortable IDs 58.49k ( 17.10µs) (± 1.51%) 4.69kB/op fastest
UUID.new -- generate 100 random UUIDs 34.58k ( 28.92µs) (± 1.02%) 0.0B/op 1.69× slower
Installation
-
Add the dependency to your
shard.yml
:dependencies: csuuid: github: wyhaines/csuuid.cr
-
Run
shards install
Usage
require "csuuid"
uuid = CSUUID.new
uuid = CSUUID.new(seconds: 9223372036, nanoseconds: 729262400)
uuid = CSUUID.new(identifier: Random.new.random_bytes(6))
dt = ParseDate.parse("2020/07/29 09:15:37")
uuid = CSUUID.new(dt)
Contributing
- Fork it (https://github.com/wyhaines/csuuid.cr/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Kirk Haines - creator and maintainer