$config->manticore->server->host, 'port' => $config->manticore->server->port, ] ); // Init index $index = $client->index( $config->manticore->index->document->name ); // Apply new configuration rules /* @TODO this case removes some not relevant records, the solution still wanted: https://github.com/manticoresoftware/manticoresearch-php/discussions/196 echo _('apply new configuration rules...') . PHP_EOL; foreach ($config->cli->document->crawl->skip->stripos->url as $condition) { echo sprintf( _('cleanup documents with url that contain substring "%s"...') . PHP_EOL, $condition ); $result = $index->deleteDocuments( [ 'match' => [ 'url' => $condition ] ] ); echo sprintf( _('documents deleted: %d') . PHP_EOL, $result['deleted'] ); } echo _('new configuration rules apply completed.') . PHP_EOL; */ // Optimize indexes echo _('indexes optimization begin...') . PHP_EOL; $index->optimize(); echo _('indexes optimization completed.') . PHP_EOL;