質問

Python:

Just out of curosity I was thinking that combinations which uuid4 or uuid6 can provide - shortuuid may fail and may run out of the combinations. Am I correct or have I understood the concept wrong?

Which one is better to use? I know that shortuuid provides url friendly url(as documented on their github page)

役に立ちましたか?

解決

A UUID is just a 128-bit number. They're usually expressed in base-16, but shortuuid uses base-57. The UUIDs are generated with either uuid.uuid4 or uuid.uuid5, so you're storing exactly the same information.

Look at the source code.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top