IdGeneraterExtension.cs 1.2 KB

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