Has someone ever measured performance of Sequential Guid vs. Standard Guid when used as Primary Keys inside a database?
|
GUID vs.Sequential GUID
f3818d69-2552-40b7-a403-01a6db4552f7
How to generate them From C# code:
|
|||||
|
|
I may be missing something here (feel free to correct me if I am), but I can see very little benefit in using sequential GUID/UUIDs for primary keys. The point of using GUIDs or UUIDs over autoincrementing integers is:
Unfortunately, using your suggestion, you lose all those things. So, yes. You've made GUIDs better. But in the process, you've thrown away almost all of the reasons to use them in the first place. If you really want to improve performance, use a standard autoincrementing integer primary key. That provides all the benefits you described (and more) while being better than a 'sequential guid' in almost every way. This will most likely get downmodded into oblivion as it doesn't specifically answer your question (which is apparently carefully-crafted so you could answer it yourself immediately), but I feel it's a far more important point to raise. |
|||||||||||
|
|
As massimogentilini already said, Performance can be improved when using UuidCreateSequential (when generating the guids in code). But a fact seems to be missing: The SQL Server (at least Microsoft SQL 2005 / 2008) uses the same functionality, BUT: the comparison/ordering of Guids differ in .NET and on the SQL Server, which would still cause more IO, because the guids will not be ordered correctly. In order to generate the guids ordered correctly for sql server (ordering), you have to do the following (see comparison details):
|
|||||||
|
|
If you need to use sequential GUIds, SQL Server 2005 can generate them for you with the However since the basic usage of GUIds is to generate keys (or alternate keys) that cannot be guessed (for example to avoid people passing guessed keys on GETs), I don't see how applicable they are because they are so easily guessed. From MSDN:
|
|||
|
|
See This article: (http://www.shirmanov.com/2010/05/generating-newsequentialid-compatible.html) Even though MSSql uses this same function to generate NewSequencialIds ( UuidCreateSequential(out Guid guid) ), MSSQL reverses the 3rd and 4th byte patterns which does not give you the same result that you would get when using this function in your code. Shirmanov shows how to get the exact same results that MSSQL would create. |
||||
|
|
|
Check out COMBs by Jimmy Nilsson: a type of GUID where a number of bits have been replaced with a timestamp-like value. This means that the COMBs can be ordered, and when used as a primary key result in less index page splits when inserting new values. |
|||||||||
|
|
I do not see the need for unique keys to be guessable or not, passing them from a web UI or in some other part seems a bad practice by itself and I do not see, if you have security concerns, how using a guid can improve things (if this is the matter use a real random number generator using the proper crypto functions of the framework). |
|||||||||
|
