Can someone tell me which is the correct way to use memcached with a socket?
Is it:
$config['cache']['enabled'] = true;
$config['cache']['provider'] = 'Memcached';
$config['cache']['config'] = [
'server' => '127.0.0.1'
];
Or:
$config['cache']['enabled'] = true;
$config['cache']['provider']...