Show HN: MyUUIDshop, Generate UUIDs and never worry about duplicates (myuuid.shop)
In response to some recent discussion here and on X about a company having an in house uuid microservice and team dedicated to it. At first that was made fun of, but further discussion revealed in fact sometimes uuids can collide due to improper entropy seeding most likely. In order to ensure that UUIDs are unique, we store each generation in a database, then check new generations against it to ensure they are not previously generated. As well, there is an API through which you can check if a UUID is present in the database. Paid options available for heavy use. Enjoy!
7 comments
[ 6.6 ms ] story [ 29.8 ms ] threadBasically in theory you could generate 1M UUIDs per second and never have a collision for the life of the universe. But in practice due to bad entropy some collisions have been seen in practice. I made the service in part as a joke off of this discussion, but also in case anyone may actually want to use it, it will dutifully provide the advertised function.