nodejs-snowflake
nodejs-snowflake copied to clipboard
Generate time sortable 64 bits unique ids for distributed systems (inspired from twitter snowflake)
Hi, Thank your `nodejs-snowflake`, It's very good! However, I found that most of the generated IDs are even numbers. Can you optimize this? For example, when the next millisecond arrives,...
If we try to bulk generate multiple snowflake IDs concurrently from the same machine, all the IDs are same: ``` const generateSnowflakeId = (machineId = null) => { const config...
This PR attempts to fix issue #22. The root cause of the issue with concurrent bulk generation of Snowflake IDs resulting in duplicate IDs seems to lie in how the...