Generate UUID in application which has 40000 request per month

39 Views Asked by At

I need to maintain unique id for application which has 40000 application per month. I am considering using simple UUID. Is there any better approach of creating it?

UUID uuid = UUID.randomUUID();

Timebased or random is good, i don't want to have any duplication in this id generation.

0

There are 0 best solutions below