You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the peer ID is limited to a u64. To avoid peer ID collisions with a large number of peers (or needing some kind of central coordination for peer IDs), I would like to use UUIDs as peer IDs. Please consider increasing the size of the peer ID to u128 or [u8; 16].
The text was updated successfully, but these errors were encountered:
Emm I think by using u64, the possibility of collision for a single CRDT document is low enough. The possibility of collision should be negligible even if there are 1M peers.
Currently the peer ID is limited to a
u64
. To avoid peer ID collisions with a large number of peers (or needing some kind of central coordination for peer IDs), I would like to use UUIDs as peer IDs. Please consider increasing the size of the peer ID tou128
or[u8; 16]
.The text was updated successfully, but these errors were encountered: