© 2023 Hashnode
#uuid
In a previous post, we talked about how ULID can be a better choice for primary keys in MySQL than UUIDs. In this tutorial, we will go over how to use ULID in Laravel Framework. ULID has been supporte…
What is UUID? Imagine a bustling digital society, where every person has a unique name, ensuring that no two individuals share the same identity. Similarly, in the world of web development, a familiar…
Unique identifiers are used to distinguish one object from another. They are commonly used to identify entities such as users, files, processes, network devices, and other objects. Unique identifiers …
Learn about ULIDs, a 128-bit identifier that's lexicographically sortable and making it an ideal alternative to UUIDs for order preserving unique identifiers. Introduction While building software app…
A UUID (Universal Unique Identifier) is a string of characters that is guaranteed to be unique across all devices and time. UUIDs are widely used to uniquely identify resources such as database entrie…