searchwp\indexer\batch_size
Da: 4.0.0
Indice
Controlla quante voci vengono indicizzate durante ogni batch dell'indicizzatore.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Intero | $size |
50 (10 se l'aggressività ridotta dell'indicizzatore è abilitata) |
4.0.0 |
Esempi
All hooks should be added to your custom SearchWP Customizations Plugin.
Aumenta la dimensione del batch dell'indicizzatore
This file contains hidden or 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; | |
| } ); |

