UUID1 is generated from mac address of the machine + timestamp + random bits and UUID4 is completely random. Sometimes you'd want one sometimes the other.
You can try these in python as:
>>> import uuid >>> uuid.uuid1() >>> uuid.uuid4()
UUID1 is generated from mac address of the machine + timestamp + random bits and UUID4 is completely random. Sometimes you'd want one sometimes the other.
You can try these in python as: