Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linusling/uniqueidutil
分布式全局唯一ID生成工具。
https://github.com/linusling/uniqueidutil
java snowflake twitter unique-id
Last synced: about 1 month ago
JSON representation
分布式全局唯一ID生成工具。
- Host: GitHub
- URL: https://github.com/linusling/uniqueidutil
- Owner: LinusLing
- Created: 2019-12-20T03:31:15.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-20T03:36:58.000Z (about 5 years ago)
- Last Synced: 2024-10-30T06:10:41.322Z (3 months ago)
- Topics: java, snowflake, twitter, unique-id
- Language: Java
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# UniqueIDUtil
Twitter [snowflake](https://github.com/twitter-archive/snowflake) 算法的 Java 实现。
# How to use
```java
UniqueIDUtil.getInstance().nextId();
```
or
```java
UniqueIDUtil.getInstance(3, 4).nextId();
```