We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All OTIdentifiers should allocate their memory via a hash table or binary tree, and share that memory for all instances of the same ID.
That way, when it comes time to COMPARE IDs, we only have to compare the address, and not the byte-for-byte ID itself.
Should do a lot for optimization to change ALL ID comparisons to a single number instead of 32 of them, or however many bytes are in the ID.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
All OTIdentifiers should allocate their memory via a hash table or binary tree, and share that memory for all instances of the same ID.
That way, when it comes time to COMPARE IDs, we only have to compare the address, and not the byte-for-byte ID itself.
Should do a lot for optimization to change ALL ID comparisons to a single number instead of 32 of them, or however many bytes are in the ID.
The text was updated successfully, but these errors were encountered: