Closed Joshfindit closed 8 years ago
As UUID v1 uses the MAC address of the local machine, it keeps information that's not necessary in all situations.
v4 is random, so requires no system calls to generate. java.util.UUID.randomUUID(); Found this as well: http://docs.oracle.com/javase/8/docs/api/java/util/UUID.html#randomUUID--
java.util.UUID.randomUUID();
Related to https://github.com/graphaware/neo4j-uuid/issues/19
Fixed by #31
As UUID v1 uses the MAC address of the local machine, it keeps information that's not necessary in all situations.
v4 is random, so requires no system calls to generate.
java.util.UUID.randomUUID();
Found this as well: http://docs.oracle.com/javase/8/docs/api/java/util/UUID.html#randomUUID--