Version 1.5 is now available for everyone with an active license and if you are using Media in your search results you are encouraged to purge your index and rebuild it as some media-related index update bugs have been resolved.
The other big addition here is the initial inclusion of Admin Bar support. Now when viewing post edit screens you can see when it was last updated!
Another exciting addition is a new filter to allow for better throttling of the indexer, you can now tell it to sleep()
in between passes to offload itself a bit. For example:
<?php
function mySearchWPThrottle() {
return 1; // pause for 1 second in between indexer passes
}
add_filter( 'searchwp_indexer_throttle', 'mySearchWPThrottle' );
Full changelog:
- [New] Admin Bar entry (currently displays the last time the current post was indexed)
- [New] New Filter:
searchwp_admin_bar
to allow you to disable the Admin Bar entry if you so choose - [New] New Filter:
searchwp_indexer_throttle
allows you to tell the indexer to pause a number of seconds in between passes - [Fix] PHP Warning cleanup
- [Fix] Fixed an issue where keyword stems were not fully utilized in AND logic passes
- [Fix] Fixed an issue where attachments may not be properly reindexed after an edit
- [Fix] Better index cleanup of deleted Media
- [Improvement] SearchWP’s indexer will now automatically pause/unpause when running WordPress Importer