I need to create a timestamp (in milliseconds) in Java that is guaranteed to be unique in that particular VM-instance. I.e. need some way to throttle the throughput of System.currentTimeMillis() so that it returns at most one results every ms. Any ideas on how to implement that?
feedback
|
|
This will give a time as close the current time as possible without duplicates.
One way to avoid the limitation of one id per milli-second is to use a micro-second timestamp. i.e. multiply currentTimeMS by 1000. This will allow 1000 ids per milli-second. Note: if time goes backwards, eg due to an NTP correction, the time will just progress at 1 milli-second per invocation until time catches up. ;) | |||||||||||||
feedback
|
|
You can use Although I tried below and each time it gives different values, it probably is not guaranteed to be unique all the time.
Another way is to use | |||||||||||||||
feedback
|
|
You could use Note that the absolute value | |||
|
feedback
|
|
Could you perhaps make use of
More details here: http://docs.oracle.com/javase/1.5.0/docs/api/java/util/UUID.html | |||
|
feedback
|