mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
<?php
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* Provides interface for queueing a solr reindex
|
|
*/
|
|
interface SolrReindexHandler
|
|
{
|
|
/**
|
|
* Trigger a solr-reindex
|
|
*
|
|
* @param LoggerInterface $logger
|
|
* @param int $batchSize Records to run each process
|
|
* @param string $taskName Name of devtask to run
|
|
* @param string|array|null $classes Optional class or classes to limit index to
|
|
*/
|
|
public function triggerReindex(LoggerInterface $logger, $batchSize, $taskName, $classes = null);
|
|
|
|
/**
|
|
* Begin an immediate re-index
|
|
*
|
|
* @param LoggerInterface $logger
|
|
* @param int $batchSize Records to run each process
|
|
* @param string $taskName Name of devtask to run
|
|
* @param string|array|null $classes Optional class or classes to limit index to
|
|
*/
|
|
public function runReindex(LoggerInterface $logger, $batchSize, $taskName, $classes = null);
|
|
|
|
/**
|
|
* Do an immediate re-index on the given group, where the group is defined as the list of items
|
|
* where ID mod $groups = $group, in the given $state and optional $class filter.
|
|
*
|
|
* @param LoggerInterface $logger
|
|
* @param SolrIndex $indexInstance
|
|
* @param array $state
|
|
* @param string $class
|
|
* @param int $groups
|
|
* @param int $group
|
|
*/
|
|
public function runGroup(LoggerInterface $logger, SolrIndex $indexInstance, $state, $class, $groups, $group);
|
|
}
|