]
Tristan Tarrant updated ISPN-11279:
-----------------------------------
Fix Version/s: 11.0.2.Final
(was: 11.0.1.Final)
Replace UUID.randomUUID() with Util.threadLocalRandomUUID()
-----------------------------------------------------------
Key: ISPN-11279
URL:
https://issues.redhat.com/browse/ISPN-11279
Project: Infinispan
Issue Type: Task
Components: Core
Affects Versions: 10.1.1.Final
Reporter: Dan Berindei
Assignee: Dan Berindei
Priority: Major
Fix For: 11.0.2.Final
{{UUID.randomUUID()}} is pretty expensive, because it uses {{SecureRandom}}.
We don't need cryptographically strong UUIDs, so we can generate all our UUIDs with
{{Util.threadLocalRandomUUID()}} instead.