Skip to content

Instantly share code, notes, and snippets.

@havenwood
Last active June 17, 2024 21:33
Show Gist options
  • Save havenwood/c54db1b3bffbb199e96b2c9f37eb754c to your computer and use it in GitHub Desktop.
Save havenwood/c54db1b3bffbb199e96b2c9f37eb754c to your computer and use it in GitHub Desktop.
UUIDv7 in Ruby, using IO::Buffer
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