Available since: 1.0
searchwp_indexer_load_monitoring
In Linux environments, SearchWP monitors the current load of the server (e.g. how hard the processor is working) during indexing so as to not overuse server resources. If you would like to prevent SearchWP from monitoring server load, add the following to your theme’s functions.php
:
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 | |
add_filter( 'searchwp_indexer_load_monitoring', '__return_false' ); |