We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c53bfdb commit 80f7f5fCopy full SHA for 80f7f5f
engine/base_client/search.py
@@ -20,7 +20,7 @@
20
21
22
class BaseSearcher:
23
- _doc_id_counter = itertools.count(1)
+ _doc_id_counter = itertools.count(1000000)
24
MP_CONTEXT = None
25
26
def __init__(self, host, connection_params, search_params):
@@ -86,8 +86,6 @@ def search_all(
86
num_queries: int = -1,
87
insert_fraction: float = 0.0,
88
):
89
- print(f"In base_client/search_all. insert_fraction {insert_fraction}")
90
-
91
parallel = self.search_params.get("parallel", 1)
92
top = self.search_params.get("top", None)
93
single_search_params = self.search_params.get("search_params", None)
0 commit comments