XF 1.2 Questions about caching

jauburn

Well-known member
Been doing the most I can to maximize performance given the meager server resources I have, which has led me to questions about caching.

1. Xcache. If I have this on the server, which I do, must I incorporate the lines mentioned here in order for xenforo to take advantage of the caching? My sense is that the answer is "no" because, frankly, I've noticed no difference with simply xcache working and with xcache working and those lines inserted. What say ye?

2. Minify CSS. Does this actually have a performance impact for the better if turned on? I haven't noticed anything.

3. Fetch public templates as files. Same as question 2.

With xcache installed, should I just go ahead and "minify" and "fetch"?
 
For some reason, when I add these lines to config.php

$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';

my site seems actually to go a bit slower. Remove them, and it's faster.

This is a subjective impression, of course.
 
Top Bottom