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
When using std::map as a cache we usually do not need ordered collection traversal features. Moreover, insert/access operations on std::map is O(log N) whereas insert to hash container (like unordered_map) is nearly O(1).
This may improve performance of VM.
The text was updated successfully, but these errors were encountered:
When using std::map as a cache we usually do not need ordered collection traversal features. Moreover, insert/access operations on std::map is O(log N) whereas insert to hash container (like unordered_map) is nearly O(1).
This may improve performance of VM.
The text was updated successfully, but these errors were encountered: