I need to generate a unique identifier (uniqueID) for each visitor my site. Which algorithm is better use for this? Have any ideas?
Update: small condition: do not use Session Id.
|
I need to generate a unique identifier ( Update: small condition: do not use Session Id. |
||||
|
|
|
How about just using the web container's Session ID? |
|||||||||
|
|
I usually use microsec time, but if two users somehow get on at the exact same time i add a random number to the end of it. (still a possibility for repeats, but very unlikely) |
|||
|
|