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 wordmap is queried with multiple keys (e.g. wmap.query('a', 'b', 'c')) it currently bsearches each one independently, then optimizes the data reads based on the results. However, if instead of reading one key on every bsearch, we read 10kb worth of keys, that could take care of a bunch of other requested keys, and stop bsearching for others.
The text was updated successfully, but these errors were encountered:
When wordmap is queried with multiple keys (e.g.
wmap.query('a', 'b', 'c')
) it currently bsearches each one independently, then optimizes the data reads based on the results. However, if instead of reading one key on every bsearch, we read 10kb worth of keys, that could take care of a bunch of other requested keys, and stop bsearching for others.The text was updated successfully, but these errors were encountered: