Skip to content

Commit 9b88f04

Browse files
committed
Remove debug prints
1 parent 26f9d24 commit 9b88f04

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

redisvl/index/index.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,6 @@ def batch_search(
681681

682682
for i in range(0, len(queries), batch_size):
683683
batch_queries = queries[i : i + batch_size]
684-
print("batch queries", batch_queries)
685684

686685
# redis-py doesn't support calling `search` in a pipeline,
687686
# so we need to manually execute each command in a pipeline
@@ -693,18 +692,14 @@ def batch_search(
693692
query, query_params=query_params
694693
)
695694
batch_built_queries.append(q)
696-
print("query", query_args, options)
697695
pipe.execute_command(
698696
"FT.SEARCH",
699697
*query_args,
700698
**options,
701699
)
702700

703701
st = time.time()
704-
# One list of results per query
705-
print("query stack", pipe.command_stack)
706702
results = pipe.execute()
707-
print("SUCCESS")
708703

709704
# We don't know how long each query took, so we'll use the total time
710705
# for all queries in the batch as the duration for each query

0 commit comments

Comments
 (0)