eva2000
Well-known member
I am still on XF 1.5 and haven't touched XF 2 since the betas right now but need clarification as to whether XF 2 supports using Libmemcached backend cache for memcached pecl php usage as opposed to Memcached backend using memcache pecl php extension usage ? PHP 7.3 seems to lack memcache pecl php extension support so using Libmemcached backend cache with memcached pecl php extension seems like the only way forward with PHP 7.3 AFAIK ?
With XF 1.5 I had
What would be the equivalent for XF 2 if Libmemcached backend is supported ?
Also which version of Zend Framework is XF 1.5 and XF 2.0 based on ? For looking up documentation wise https://framework.zend.com/manual/1.11/en/zend.cache.backends.html#zend.cache.backends.libmemcached ?
With XF 1.5 I had
Code:
$config['cache']['enabled'] = true;
$config['cache']['cacheSessions'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions'] = array(
'caching' => true,
'cache_id_prefix' => 'xfxx_',
'automatic_serialization' => false,
'lifetime' => 0
);
$config['cache']['backend'] = 'Libmemcached';
$config['cache']['backendOptions'] = array(
'servers' => array(
array(
'host' => '127.0.0.1',
'port' => 11211,
'weight' => 1
)
)
);
Also which version of Zend Framework is XF 1.5 and XF 2.0 based on ? For looking up documentation wise https://framework.zend.com/manual/1.11/en/zend.cache.backends.html#zend.cache.backends.libmemcached ?
Last edited: