You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want customize generators, you may also just want to hold on to generator instance:
@@ -187,9 +191,9 @@ There are many other publicly available UUID generators. For example:
187
191
* JDK has included `java.util.UUID` since 1.4, but omits generation methods (esp. time/location based ones), has sub-standard performance for many operations and implements comparison in useless way
Note that although some packages claim to be faster than others, it is not clear whether:
194
+
Note that although some packages claim to be faster than others, it is not clear:
191
195
192
-
1.Claims have been properly verified (or, if they have, can be independently verified), AND
193
-
2.It is not likely that performance differences truly matter: JUG, for example, can generate a millions of UUID per second per core (sometimes hitting the theoretical limit of 10 million per second) -- and it seems unlikely that generation will be bottleneck for about any use case
196
+
1.whether laims have been properly verified (or, if they have, can be independently verified), OR
197
+
2.whether performance differences truly matter: JUG, for example, can generate millions of UUID per second per core (sometimes hitting the theoretical limit of 10 million per second) -- and it seems unlikely that generation will be bottleneck for any actual use case
194
198
195
199
so it is often best to choose based on stability of packages and API.
0 commit comments