Magento Magmi 导入和缓存问题
Magento Magmi import and caching issue
谁可以提供帮助 - 我正在使用 Magmi 将简单产品导入 Magento 1。9.x。导入后不删除缓存是否正确?有没有办法只刷新与导入产品相关的缓存(产品缓存、整页缓存)?
您不需要删除缓存,只需通过以下代码刷新它-
Mage::app()->getCacheInstance()->flush();
并且,在刷新后,它会通过 -
重新索引您的数据
$indexingelement = array("cataloginventory_stock","catalog_product_attribute","catalog_category_flat","groupscatalog2_category","catalog_product_attribute","catalogsearch_fulltext","catalog_product_flat","catalog_product_price","catalog_url","catalog_category_product","groupscatalog2_product","tag_summary");
//重建索引
foreach ($indexingelement as $indexing)
{
回声 $indexing.'重新索引'.'
';
尝试
{
$process = Mage::getModel('index/indexer')->getProcessByCode($indexing);
$process->reindexAll();
}
赶上(例外$ e){
回声 'Error occured while reindexing' 。 $索引。 '
';
打印($set->getMessage());
}
谁可以提供帮助 - 我正在使用 Magmi 将简单产品导入 Magento 1。9.x。导入后不删除缓存是否正确?有没有办法只刷新与导入产品相关的缓存(产品缓存、整页缓存)?
您不需要删除缓存,只需通过以下代码刷新它- Mage::app()->getCacheInstance()->flush();
并且,在刷新后,它会通过 -
重新索引您的数据$indexingelement = array("cataloginventory_stock","catalog_product_attribute","catalog_category_flat","groupscatalog2_category","catalog_product_attribute","catalogsearch_fulltext","catalog_product_flat","catalog_product_price","catalog_url","catalog_category_product","groupscatalog2_product","tag_summary");
//重建索引
foreach ($indexingelement as $indexing)
{
回声 $indexing.'重新索引'.'
';
尝试
{
$process = Mage::getModel('index/indexer')->getProcessByCode($indexing);
$process->reindexAll();
}
赶上(例外$ e){
回声 'Error occured while reindexing' 。 $索引。 '
';
打印($set->getMessage());
}