searchwp\indexer\batch_size
Since: 4.0.0
Table of Contents
Control how many entries are indexed during each indexer batch.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Integer | $size |
50 (10 if reduced indexer aggressiveness is enabled) |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Increase indexer batch size
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Increase SearchWP's indexer batch size (default is 25). | |
add_filter( 'searchwp\indexer\batch_size', function( $size ) { | |
return 50; | |
} ); |