1
0
mirror of synced 2026-02-25 22:37:59 +08:00
Files
SnowFlake-IdGenerator/README.md
zhouzj 555ccb2832 edit
2021-03-11 17:16:19 +08:00

33 lines
745 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# idgenerator
#### 介绍
用一种全新的雪花漂移算法让ID更短、生成速度更快。
核心在于缩短ID长度的同时还能保持每毫秒并发处理量50W/0.1s),且能保持伸缩能力。
支持QQ群646049993
#### 功能说明:
1.ID更短是传统算法的几倍用50年都不会超过jsNumber的最大值。
2.生成速度更快0.1秒可生成50万个。i7笔记本
3.支持时间回拨处理。
4.支持手工插入新ID。
5.漂移时能对外异步发消息。
6.不依赖任何外部缓存和数据库。
7.目前是C#版很快会出java、php等版本。
#### 文件说明:
1.SnowWorkerM1.cs 是雪花漂移算法。
2.SnowWorkerM2.cs 是传统雪花算法。