Skip to content

Commit

Permalink
Update class-search-stats.php
Browse files Browse the repository at this point in the history
Update the query limit to 100k vs 1 million
  • Loading branch information
oikeme committed Dec 19, 2024
1 parent fb4f12e commit 132b35e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Search_Stats {
const CACHE_GROUP = 'jetpack_search';
const POST_TYPE_BREAKDOWN_CACHE_KEY = 'post_type_break_down';
const TOTAL_POSTS_COUNT_CACHE_KEY = 'total-post-count';
const POST_COUNT_QUERY_LIMIT = 1e6;
const POST_COUNT_QUERY_LIMIT = 1e5;

/**
* Get stats from the WordPress.com API for the current blog ID.
Expand Down

0 comments on commit 132b35e

Please sign in to comment.