1
0
mirror of synced 2026-03-01 08:17:57 +08:00

auto commit

This commit is contained in:
yitter
2021-04-02 22:53:44 +08:00
parent cd36cf1e62
commit 93da5e850d
2 changed files with 6 additions and 6 deletions

View File

@@ -27,11 +27,11 @@ require github.com/yitter/idgenerator-go v1.2.0
```
// 定义参数
var options = idgen.NewIdGeneratorOptions(1)
options.WorkerId = 1
options.WorkerIdBitLength = 6
options.SeqBitLength = 6
// ...
var options = idgen.NewIdGeneratorOptions(1) // 构造函数输入 WorkerId
// options.WorkerId = 1
// options.WorkerIdBitLength = 6
// options.SeqBitLength = 6
// ... 以上参数一般不需要设置,系统有默认值
idgen.SetIdGenerator(options)
// 调用方法生成Id

View File

@@ -1,5 +1,5 @@
module yitidgen
go 1.14
go 1.16
require github.com/go-redis/redis/v8 v8.8.0 // indirect