How safe is it to use UUID to uniquely identify something (I'm using it for files uploaded to the server)? As I understand it, it is based off random numbers. However, it seems to me that given enough time, it would eventually repeat it self, just by pure chance. Is there a better system or a pattern of some type to alleviate this issue?
|
1
|
|||||||||||
|
|
|
If by "given enough time" you mean 100 years and you're creating them at a rate of a billion a second, then yes, you have a 50% chance of having a collision after 100 years. |
||
|
|
|
Quoting from Wikipedia:
It goes on to explain in pretty good detail on how safe it actually is. So to answer your question: Yes, it's safe enough. |
||
|
|
|
|
UUID schemes generally use not only a pseudo-random element, but also the current system time, and some sort of often-unique hardware ID if available, such as a network MAC address. The whole point of using UUID is that you trust it to do a better job of providing a unique ID than you yourself would be able to do. This is the same rationale behind using a 3rd party cryptography library rather than rolling your own. Doing it yourself may be more fun, but it's typically less responsible to do so. |
||
|
|
|
|
For what you are using it for, it should be relatively safe. Some Linux distributions have had problems with duplicate UUIDs for filesystems. |
||
|
|
|
Been doing it for years. Never run into a problem. I usually set up my DB's to have one table that contains all the keys and the modified dates and such. Haven't run into a problem of duplicate keys ever. The only drawback that it has is when you are writing some queries to find some information quickly you are doing a lot of copying and pasting of the keys. You don't have the short easy to remember ids anymore. |
||
|
|
|
|
I don't know if this matters to you, but keep in mind that GUIDs are globally unique, but substrings of GUIDs aren't. |
||
|
|
