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
+ dense searchers batch_search - change method signature to take queries, then qids - to be consistent
with SimpleSearcher and SimpleImpactSearcher
+ dense searchers: refactor ThreadPoolExecutor to use try-with-resources, see #2579
We use ThreadPools in many places throughout the codebase, e.g.,
https://github.com/castorini/anserini/blob/master/src/main/java/io/anserini/search/HnswDenseSearcher.java
Best practices starting Java 19 I believe is to use try-with-resources blocks, e.g.,
https://docs.oracle.com/en/java/javase/19/docs/api/java.base/java/util/concurrent/ExecutorService.html
The text was updated successfully, but these errors were encountered: