Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
1.2k views
in Q2A Core by
edited by

QA 1.8 comes with caching feature which can be also easly implemented to QA 1.7.5. 

I just wonder if any of you have tested efficiency of this caching method. To what extent it helps to increase the performance of a frequently changing (active) q2a website? Can any one give metric regarding this, whoever tested it? What are the pros and cons of enabling caching?

This is my current gtmetrix without caching: (on a shared host)

Q2A version: 1.7.4 fairly modified and customized

2 Answers

+2 votes
by
edited by
 
Best answer

The tool you mention is for front-end performance, whereas the caching system in Q2A is all about the back-end performance*. Some of the page speed tools may show a "Time To First Byte" (TTFB) measurement, which Q2A's caching system will improve.

How much the caching helps will depend mainly on how may anonymous (not logged in) visitors you get. Currently, caching question pages only works for anonymous visitors (because the queries for that page mix in user details). Other queries such as the related questions widget are cached for all visitors. I tested on my site and less than 5% of my visitors were logged in, but as I have a high-traffic site getting visitors from Google, this may not be typical of smaller sites.

Caching effectiveness also depends on how long you set the cache for. If you set it too short there is no point as it will have expired by the time the next person comes along. You can do a bit of maths to decide how long you should cache for. Let's say your most popular question gets about 100 visitors per day. 1 day = 1440 minutes so that means on average, someone visits that question once every 14.4 minutes. And that's just an average, so quiet periods on your site could have 1 visitor per hour or less. To get the benefit you'd need to cache a page for several hours.

Hope that helps.


Edit: regarding your question about "frequently changing" sites, that in itself doesn't matter. Firstly there is an option to prevent caching of new posts (because they are more likely to be updated soon). Secondly, updating an older question doesn't purge the cache - anonymous visitors will still see the cached question until it expires.

I also forgot to mention Memcached, which is an alternate caching system using memory instead of files on disk. However, to use it you need to install the Memcached service, and enable the Memcached PHP extension. But it should be much more efficient than the default file cache. I haven't got around to testing on my live site yet but I'll let you know how it goes.


* While the caching system only works on the back-end, there have been some improvements to the front-end in v1.8 as well:

  • The JavaScript has been combined into one file, qa-global.js. That means it is loaded once and can be cached on all future pages.
  • A lot of JS code duplication has been streamlined.
  • There have been various improvements to the SnowFlat CSS since it was first added to Q2A (some of that was already done in 1.7.x, I don't remember exactly how much was done in 1.8).
  • There's a new option in admin, "Minify HTML" which makes the HTML slightly smaller. This is actually both a back-end and front-end improvement as the PHP code outputting the HTML is faster too.
by
I will definitely benefit from minification of HTML. But I am not sure about caching feature. Thanks  Scott.
by
@Scott: It would be nice to see more explanations (how caching works) in the docs and/or on the admin/caching page.
+2 votes
by
I think only Scott checked cache performance. I will also check performance on q2a latest version testing site http://meta.question2answer.info (cache is enabled on this site).

It should improve performance considerably.
by
have you tested it?
by
"improve performance considerably" - please give performance data with vs. without cache.
by
sure! currently I'm testing q2a on dedicated server with version 1.7.5 and 1.8.0 beta1(with and without cache). I will share details as soon as I'm done.
...