Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 28, 2022 13:45
Show Gist options
  • Select an option

  • Save searchwpgists/44b848c00a4bc5e113060e87c5bbc7f4 to your computer and use it in GitHub Desktop.

Select an option

Save searchwpgists/44b848c00a4bc5e113060e87c5bbc7f4 to your computer and use it in GitHub Desktop.
Customize SearchWP's Indexer throttle
<?php
// Customize SearchWP's Indexer throttle.
add_filter( 'searchwp\background_process\load_throttle', function( $throttle, $args ) {
return 4 * $args['load'];
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment