Last active
June 17, 2024 21:33
-
-
Save havenwood/c54db1b3bffbb199e96b2c9f37eb754c to your computer and use it in GitHub Desktop.
UUIDv7 in Ruby, using IO::Buffer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def uuid_v7 | |
milliseconds = Process.clock_gettime(Process::CLOCK_REALTIME, :millisecond) | |
buffer = IO::Buffer.new(16) | |
buffer.set_string([milliseconds].pack('Q>')[2..], 0) | |
buffer.set_string(SecureRandom.bytes(10), 6) | |
buffer.set_value(:U8, 6, buffer.get_value(:U8, 6) & 0x0F | 0x70) | |
buffer.set_value(:U8, 8, buffer.get_value(:U8, 8) & 0x3F | 0x80) | |
buffer.get_string.unpack('H8H4H4H4H12').join('-') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment