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
<?php | |
// Increase SearchWP's indexer batch size (default is 50). | |
add_filter( 'searchwp\indexer\batch_size', function( $size ) { | |
return 100; | |
} ); |