UUID::GEN

UUID v7 Generator - Time-Ordered

~/uuid-generator
Count
1 UUID
output.v7

UUID v7 is the modern standard (RFC 9562) combining Unix timestamp with random data. It is naturally sortable by creation time, making it ideal for database primary keys.

// FEATURES

  • -48-bit Unix timestamp (millisecond precision)
  • -Naturally sortable by creation time
  • -Better database index performance
  • -RFC 9562 compliant

// USE CASES

  • *Database primary keys
  • *Event sourcing and logs
  • *Distributed systems requiring sort order