flâneur — a map of the web's best reading

Designing APIs for humans: Object IDs - DEV Community

dev.to · 3,916 words · saved by 1 readers

Choosing your ID type Regardless of what type of business you run, you very likely require...

Choosing your ID type Regardless of what type of business you run, you very likely require a database to store important data like customer information or status of orders. Storing is just one part of it though; you also need a way to swiftly retrieve the data – which is where IDs come in. Also known as a primary key, IDs are what you use to uniquely specify a row in a table. When designing your table, you want a system where your IDs are easy to generate, unique and human readable. The most simplistic approach you might take to IDs when using a relational database is to use the row ID, which

Explore this link on the map →

related reading