Hi everyone. I am several months into a pre-production project that I started before Laravel released official support for UUID primary keys using a trait.
I wanted UUIDs on my project so I rolled my own trait. My trait does not use ordered UUIDs (but the database columns do have an index).
I am wondering if anyone has any insight into if it's worth it for me to refactor my entire application to use ordered UUIDs as provided by Laravel's official trait.
As I understand it, ordered UUIDs will be more efficient to query because they can be sorted.
Does anyone know how big of a difference using ordered UUIDs might make?