XF 1.3 Change cache server host in FrontEnd cache

quydo

Member
Hi all

I read help about cache in Xenforo here: https://xenforo.com/help/cache/

In frontend, I want to change server cache to another server (not localhost - default - I think that). But I don't see option (host, servers, etc...) to do that

Here is current configuration:
$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions'] = array (
'caching' => true ,
'automatic_serialization' => true ,
'Lifetime' => 1800,
'cache_id_prefix' => 'xf_'
);

$config['cache']['backend'] = 'Libmemcached';

So can you help me :(
 
The type of thing you want to change is a backend cache option. The options available are specific to the backend system you're using (Libmemcached based on the code you entered), so you'll need to see exactly what options are available via the ZF docs.
 
Top Bottom