0
我有在opencart中導入xml feed的代碼。我可以在導入之前清除緩存,但在我想重新創建產品頁面的緩存之後。Opencart在導入後重新緩存產品頁面
我看到的目錄/產品/的getProducts使用
$this->cache->set('product.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id') . '.' . (int)$customer_group_id . '.' . $cache, $product_data);
,但我無法找到具體的產品頁類似的東西,它看起來像與
$this->response->setOutput($this->render());
緩存反正是有生成和緩存產品數據循環中的產品頁面?如果我不能編碼,我想設置$ _GET並調用index.php或使用curl,但我想避免帶寬。