Add reseter service and command

This commit is contained in:
ornicar 2011-04-12 15:14:00 -07:00
commit 15f24fcb59
3 changed files with 39 additions and 6 deletions

View file

@ -1,35 +0,0 @@
<?php
namespace FOQ\ElasticaBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\Command as BaseCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\Output;
class CreateIndexesCommand extends BaseCommand
{
/**
* @see Command
*/
protected function configure()
{
$this
->setName('foq:elastica:reset')
->setDescription('Recreates all indexes');
}
/**
* @see Command
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
foreach ($this->container->get('foq_elastica.index_manager')->getAllIndexes() as $name => $index) {
$output->writeLn(sprintf('Reset index "%s"', $name));
$index->delete();
$index->create();
}
}
}