|
|
|
|
|
by lkrubner
1470 days ago
|
|
There were two problems. One problem was the style that started around 2004, and was very popular with Ruby on Rails and WordPress, and then Syfmony and Django, where you expose the PK in the URL. If your integer starts with 1 and then increments, you may not get to a billion, and you'll never get to a trillion. So it became ridiculously easy to for outsiders to scan your site: http://www.example.com/1 http://www.example.com/2 http://www.example.com/3 ... http://www.example.com/10000000000 That was one problem. Using UUIDs for PKs means outsiders can't simply scan your site. The other problem was that over the years, everyone ran into the problem of moving a database, or needing to combine multiple databases, in which case having PKs the start with 1 and then increment, a collision of the PKs, from different databases, is 100% guaranteed. This often happens when combining WordPress sites, for instance. If you use UUIDs as your PK, then such collisions become unlikely. |
|