Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 26, 2020 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/2cd2c1c8c7b9f2634354f4c0217c34d1 to your computer and use it in GitHub Desktop.
Save jchristopher/2cd2c1c8c7b9f2634354f4c0217c34d1 to your computer and use it in GitHub Desktop.
Increase SearchWP's indexer batch size
<?php
// Increase SearchWP's indexer batch size (default is 50).
add_filter( 'searchwp\indexer\batch_size', function( $size ) {
return 100;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment