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
The index is consuming too much memory in high load situations. It is currently a simple HashMap<String, String> mapping instance-> type. This implies high redundancy as #instances >> #types.
Objective: change index structure to optimize memory usage while keeping O(1) lookup time.
The index is consuming too much memory in high load situations. It is currently a simple
HashMap<String, String>
mapping instance-> type. This implies high redundancy as #instances >> #types.Objective: change index structure to optimize memory usage while keeping O(1) lookup time.
Proposal:
File format:
Struct:
The text was updated successfully, but these errors were encountered: