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
In this file use GO map as hash table to store and find services by ID but GO map is not effient for simple uint64 type as key! Improve this file by implement internal custom table.
Don't use array pointer for buckets due to it is most read table with over 99.9% times.
Don't use overflow map||buckets and block procces to expand whole hash table.
The text was updated successfully, but these errors were encountered:
OmidHekayati
changed the title
Improve service finding by ID performance
[service] Improve service finding by ID performance
May 2, 2023
In this file use GO map as hash table to store and find services by ID but GO map is not effient for simple uint64 type as key! Improve this file by implement internal custom table.
The text was updated successfully, but these errors were encountered: