Kindly check my config, Please

rdn

Well-known member
PHP:
## Caching
$config['cache']['cacheSessions'] = true;
$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions'] = array(
                                        'caching'                      => true,
                                        'automatic_serialization'      => true,
                                        'lifetime'                      => 10800,
                                        'cache_id_prefix' => 'phc'
);
$config['cache']['backend'] = 'Apc';

$config['cache']['backend'] = 'Memcached';
$config['cache']['backendOptions'] = array(
    'compression' => false,
    'servers' => array(
        array(
            // your memcached server IP /address
            'host' => '127.0.0.1',
          
            // memcached port
            'port' => 11211,
        )
    )
);

Is Everything's correct?
 
Top Bottom