Reply to thread

I set up frontend cache and i found the first query seems to always be empty. Maybe when frontend cache is active it can skip it?


[PHP]$config['cache']['enabled'] = true;

$config['cache']['frontend'] = 'Core';

$config['cache']['frontendOptions'] = array(

                'caching'                   => true,

                'automatic_serialization'   => true,

                'lifetime'                  => 10800,

                'cache_id_prefix'           => 'xen_'

);

$config['cache']['backend'] = 'Xcache';[/PHP]


Back
Top Bottom