Skip to content

Commit c119db9

Browse files
authored
Merge pull request #55 from aligent/feature/reduce_lucene_query_result_size
Reduce lucene result to 100
2 parents 00ce8e6 + a702213 commit c119db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Model/Indexer/LuceneSearch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function prepare(): void
6060
'q' => $value,
6161
// the default page size is 10. The highest limit is 10000. If we want to traverse further, we will
6262
// have to use the search after parameter. There are no plans to implement this right now.
63-
'size' => 10000
63+
'size' => 100
6464
]
6565
);
6666

0 commit comments

Comments
 (0)