Skip to content

Commit

Permalink
Set the page size to 50
Browse files Browse the repository at this point in the history
To make it extra unlikely that the guide one's looking for is not in the
first page.

Compromise to address #40 (comment)
  • Loading branch information
yrodiere committed Nov 9, 2023
1 parent 33132ad commit ebd8277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/quarkus/search/app/SearchService.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@Path("/")
public class SearchService {

private static final Integer PAGE_SIZE = 20;
private static final Integer PAGE_SIZE = 50;

@Inject
SearchSession session;
Expand Down

0 comments on commit ebd8277

Please sign in to comment.