Skip to content
Snippets Groups Projects
Commit f5910171 authored by Andrii Kasian's avatar Andrii Kasian
Browse files

MAGETWO-47770: Category page triggers about 800 DB requests on calls without FPC

parent 0a3fbc90
Branches
No related merge requests found
......@@ -49,7 +49,6 @@ class Topmenu extends Template implements IdentityInterface
TreeFactory $treeFactory,
array $data = []
) {
$this->setCacheLifetime(30 * 60);
parent::__construct($context, $data);
$this->_menu = $nodeFactory->create(
[
......@@ -60,6 +59,16 @@ class Topmenu extends Template implements IdentityInterface
);
}
/**
* Get block cache life time
*
* @return int
*/
protected function getCacheLifetime()
{
return parent::getCacheLifetime() ?: 3600;
}
/**
* Get top menu html
*
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment