I am using magento2 , but its page load time max than 4s.
have alread config useing varnish .
after config use redis , there are still huge sql query at catalog page ? why ? how to speed up this page ?
redis config is : app/etc/env.php
'cache' => array(
'frontend' => array(
'default' => array(
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => array(
'server' => '127.0.0.1',
'database' => '0',
'port' => '6379',
),
),
'page_cache' => array(
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => array(
'server' => '127.0.0.1',
'port' => '6379',
'database' => '1',
'compress_data' => '0',
),
),
),
),
======================= catalog page query is :
To enable Magento2 profiler following below steps: