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
At the moment there is a single search_layer function used
for both index creation and searching.
In multi-threaded searches this causes
some 10% of the runtime to be spent waiting due to the Mutex locks.
The locks are only needed during index creation and could be disabled for searches.
The text was updated successfully, but these errors were encountered:
At the moment there is a single
search_layer
function usedfor both index creation and searching.
In multi-threaded searches this causes
some 10% of the runtime to be spent waiting due to the
Mutex
locks.The locks are only needed during index creation and could be disabled for searches.
The text was updated successfully, but these errors were encountered: