Live Free
Active member
I've had issues with this in the past but it had been sorted. Presently I suspect memecached isn't working properly as I notice no difference in page speed/Insights rating when toggled.
I'm trying to ensure memcached is enabled and working for Xenforo. When I remove the cache info from the config I see no difference in PageSpeed Insights time.
With config cache settings active, I see no difference in PageSpeed Insights when "Minify CSS" and "Fetch public templates as files" is active in the Xenforo Performance Options.
This leads me to believe that memecached may be installed on the server but is not active for the Xenforo installation.
How can I tell if memcached is installed and working properly?
Why does phpinfo (run through XF ACP) show memcache (not memcached) information when according to EasyApache it's not installed?
Relevant config:
- Server-side, EasyApache does not list memcache as installed. However, when I view phpinfo() through the AdminCP I still get some information on memecache.
- Under Perl Module installer it says I have the following installed:
Cache::Memcached::Fast
I'm trying to ensure memcached is enabled and working for Xenforo. When I remove the cache info from the config I see no difference in PageSpeed Insights time.
With config cache settings active, I see no difference in PageSpeed Insights when "Minify CSS" and "Fetch public templates as files" is active in the Xenforo Performance Options.
This leads me to believe that memecached may be installed on the server but is not active for the Xenforo installation.
How can I tell if memcached is installed and working properly?
Why does phpinfo (run through XF ACP) show memcache (not memcached) information when according to EasyApache it's not installed?
Relevant config:
Code:
$config['cache']['enabled'] = true;
$config['cache']['cacheSessions'] = true;
$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,
)
)
);