Skip to content

Instantly share code, notes, and snippets.

@Schrank
Created March 27, 2012 16:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Schrank/2217520 to your computer and use it in GitHub Desktop.
Save Schrank/2217520 to your computer and use it in GitHub Desktop.
Stop Indexing in Magento
<?php
class Klasse {
public static function switchIndexingOff() {
$processes = Mage::getSingleton('index/indexer')->getProcessesCollection();
$processes->walk('setMode', array(Mage_Index_Model_Process::MODE_MANUAL));
$processes->walk('save');
}
public static function rebuildIndices() {
$processes = Mage::getSingleton('index/indexer')->getProcessesCollection();
$processes->walk('reindexAll');
$processes->walk('setMode', array(Mage_Index_Model_Process::MODE_REAL_TIME));
$processes->walk('save');
}
}
@paales
Copy link

paales commented Dec 16, 2012

I like how you used the walk method, should be used more often in Magento (low memory etc.). Cool thing with the walk method you can pass an anonymous function into it, like so:

<?php
$collection->walk(function($item, $secondArgument){
    //do stuff here
}, array('secondArgument'));

@omargits
Copy link

can you tell me how can i implement this in my project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment