2020
10-10
10-10
Js Snowflake(雪花算法)生成随机ID的实现方法
1、snowflake-id插件 importSnowflakeIdfrom"snowflake-id";constguid=num=>{constid=newSnowflakeId();returnid.generate();};2、原生使用 varSnowflake=/**@class*/(function(){functionSnowflake(_workerId,_dataCenterId,_sequence){this.twepoch=1288834974657n;//this.twepoch=0n;this.workerIdBits=5n;this.dataCenterIdBits=5n;this.maxWrokerId=-1n^(-1n<<t...
继续阅读 >