SkillAgentSearch skills...

Snowflake

java edition of [Twitter Snowflake](https://github.com/twitter/snowflake), a network service for generating unique ID numbers at high scale with some simple guarantees.

Install / Use

/learn @downgoon/Snowflake
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Snowflake

java edition of Twitter Snowflake, a network service for generating unique ID numbers at high scale with some simple guarantees.

QuickStart

  • import maven dependency
<dependency>
  <groupId>xyz.downgoon</groupId>
  <artifactId>snowflake</artifactId>
  <version>1.0.0</version>
</dependency>
  • sample code
// datacenter: 2; workerId: 5
Snowflake snowflake = new Snowflake(2, 5);
long id1 = snowflake.nextId();
long id2 = snowflake.nextId();

snowflake.formatId(id1);

for more details, please read SnowflakeDemo2.java.

snowflake tutorial

Related Skills

View on GitHub
GitHub Stars121
CategoryData
Updated9d ago
Forks45

Languages

Java

Security Score

85/100

Audited on Mar 22, 2026

No findings