Hacker News new | ask | show | jobs
by sicp-enjoyer 1300 days ago
I'm surprised to hear it's not sortable. Why can't they just memcmp it?
1 comments

You can and databases do.

What people want is for it to be sortable by generation time, i.e., they want it to share the "larger values were generated later" property of timestamps (but without collisions) or SERIALs (but without the locking on the serial / independent generation).

Got it. Thanks for correction.