diff --git a/core/modules/search/lib/Drupal/search/Plugin/SearchIndexingInterface.php b/core/modules/search/lib/Drupal/search/Plugin/SearchIndexingInterface.php index a2ca973..a8722c9 100644 --- a/core/modules/search/lib/Drupal/search/Plugin/SearchIndexingInterface.php +++ b/core/modules/search/lib/Drupal/search/Plugin/SearchIndexingInterface.php @@ -14,6 +14,12 @@ * search_cron() and via the search module administration form. Plugins not * implementing this interface are assumed to use alternate mechanisms for * indexing the data used to provide search results. + * + * Multiple search pages can be created for each search plugin, so you will need + * to choose whether these search pages should share an index (in which case + * they must not use any search page-specific configuration while indexing) or + * they will have separate indexes (which will use additional server resources). + * */ interface SearchIndexingInterface {