Merchant Queue

Automatic chronological ordering using k-sortable IDs. No database timestamps needed.

Add Customer

Queue Status

Customers Waiting:0

Current Queue (Chronological)

Queue is empty. Add customers to see automatic sorting.

Why This Works

  • IDs are automatically sorted chronologically because they're k-sortable
  • No database "created_at" column needed - the ID IS the timestamp
  • Lexicographical sorting = Chronological sorting (O(n log n))
View Full Implementation