IdGeneraterExtension.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. using Microsoft.Extensions.Configuration;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Yitter.IdGenerator;
  8. namespace ERP.Framework.Extensions
  9. {
  10. /// <summary>
  11. /// Id生成扩展
  12. /// </summary>
  13. public static class IdGeneraterExtension
  14. {
  15. /// <summary>
  16. /// 初始化Id生成
  17. /// </summary>
  18. /// <param name="configuration"></param>
  19. public static void InitIdGenerater(this ConfigurationManager configuration)
  20. {
  21. // 创建 IdGeneratorOptions 对象,可在构造函数中输入 WorkerId:
  22. var options = new IdGeneratorOptions(10);
  23. // options.WorkerIdBitLength = 10; // 默认值6,限定 WorkerId 最大值为2^6-1,即默认最多支持64个节点。
  24. // options.SeqBitLength = 6; // 默认值6,限制每毫秒生成的ID个数。若生成速度超过5万个/秒,建议加大 SeqBitLength 到 10。
  25. // options.BaseTime = Your_Base_Time; // 如果要兼容老系统的雪花算法,此处应设置为老系统的BaseTime。
  26. // ...... 其它参数参考 IdGeneratorOptions 定义。
  27. // 保存参数(务必调用,否则参数设置不生效):
  28. YitIdHelper.SetIdGenerator(options);
  29. }
  30. }
  31. }