Context
Web application, PHP 5, MySQL 5.0.91
The Problem
I recently switched from using an auto-incremented integer to a UUID as a primary key for some of my tables. When generating UUID's via MySQL's UUID() function, they are extremely similar to one another:
| uuid |
----------------------------------------
| 1e5988da-afec-11e1-9877-5464f7aa6d24 |
| 408092aa-afad-11e1-9877-5464f7aa6d24 |
^------^ ^^
1 8 11-12
As you can see, only the first 8 characters and the 11th and 12th are different. I understand that UUID Version 1 uses a timestamp and hardware MAC address to generate the UUID. However, I am hesitant in using Version 1 because of these similarities (and the fact that the MAC address will never change, in my case). In addition, if the MAC address never changes, most of the UUID is useless and is wasting space.
My Custom UUID Function
As an experiment, I wrote a custom UUID-generator in PHP:
public static function GenerateUUID()
{
return
substr(sha1(Account::GetUsername() . Account::GetUserID()), 18, 8) . "-" .
substr(md5(time()), rand() % 28, 4) . "-" .
substr(md5(date("Y")), rand() % 28, 4) . "-" .
substr(sha1(rand()), 20, 4) . "-" .
substr(sha1(rand() % PHP_INT_MAX), 17, 12);
}
A sample of the results:
| uuid |
----------------------------------------
| 574d18c2-5080-bac9-5597-45435f363ea1 |
| 574d18c2-30d4-8b5b-4ffd-001744d3d287 |
Here, the first 8 characters are identical for the same user. This was intended, but not needed.
The Question
Is there a preferred/recommended way to generate a Version 4 or Version 5 UUID within a MySQL query?
If not, is it acceptable to generate a custom UUID within PHP (as above) that does not conform to a specification?
Restrictions
- I am using a shared hosting plan with command-line access, but cannot modify the existing MySQL installation.
- I would prefer avoiding third-party packages/libraries.
Notes
- I do not and will not be performing merging, synchronization, or other operations that require a GUID that contains the MAC address. That is not the issue here.
UUID_SHORT()is not available in MySQL 5.0.X (I clarified the version in my question). I decided to switch from an auto-incremented integer after reading codinghorror.com/blog/2007/03/…. – Evan Mulawski Jun 6 '12 at 16:41