This relates to this question. I am using this answer to generate UUID in JavaScript:
'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
return v.toString(16);
});
This solution appeared to be working fine, however i am getting collisions. Here's what i have:
- A web-app running in Google Chrome.
- 16 users.
- about 4000 UUIDs have been generated in the past 2 months by these users.
- i got about 20 collisions - e.g. new UUID genereated today was the same as about 2 months ago (different user).
So the questions are:
- What's causing the issue?
- How can i avoid it?