Is a GUID unique 100% of the time?
Will it stay unique over multiple threads?
|
1
|
Is a GUID unique 100% of the time? Will it stay unique over multiple threads?
|
|||
|
|
|
From Wikipedia. |
||||||||
|
|
|
The simple answer is yes. Raymond Chen wrote a great article on GUIDs and why substrings of GUIDs are not guaranteed unique. The article goes in to some depth as to the way GUIDs are generated and the data they use to ensure uniqueness, which should go to some length in explaining why they are :-) |
||
|
|
|
Yes, a GUID should always be unique. It is based on both hardware and time, plus a few extra bits to make sure it's unique. I'm sure it's theoretically possible to end up with two identical ones, but extremely unlikely in a real-world scenario. Here's a great article by Raymond Chen on Guids: http://blogs.msdn.com/oldnewthing/archive/2008/06/27/8659071.aspx |
||
|
|
|
|
If your system clock is set properly and hasn't wrapped around, and if your NIC has its own MAC (i.e. you haven't set a custom MAC) and your NIC vendor has not been recycling MACs (which they are not supposed to do but which has been known to occur), and if your system's GUID generation function is properly implemented, then your system will never generate duplicate GUIDs. If everyone on earth who is generating GUIDs follows those rules then your GUIDs will be globally unique. In practice, the number of people who break the rules is low, and their GUIDs are unlikely to "escape". Conflicts are statistically improbable. |
||
|
|
|
|
Theoretically, no, they are not unique. It's possible to generate an identical guid over and over. However, the chances of it happening are so low that you can assume they are unique. I've read before that the chances are so low that you really should stress about something else--like your server spontaneously combusting or other bugs in your code. That is, assume it's unique and don't build in any code to "catch" duplicates--spend your time on something more likely to happen (i.e. anything else). I made an attempt to describe the usefulness of GUIDs to my blog audience (non-technical family memebers). From there (via Wikipedia), the odds of generating a duplicate GUID:
|
|||
|
|
|
|
MSDN:
|
||
|
|
|
|
Guids are statistically unique. The odds of two different clients generating the same Guid are infinitesimally small (assuming no bugs in the Guid generating code). You may as well worry about your processor glitching due to a cosmic ray and deciding that 2+2=5 today. Multiple threads allocating new guids will get unique values, but you should get that the function you are calling is thread safe. Which environment is this in? |
||
|
|
|
|
Not guaranteed, since there are several ways of generating one. However, you can try to calculate the chance of creating two GUIDs that are identical and you get the idea: a GUID has 128 bits, hence, there are 2128 distinct GUIDs – much more than there are stars in the known universe. Read the wikipedia article for more details. |
||
|
|
|
|
@Eric: Snap!! |
||
|
|