Resource icon

Xen Cache 1.0.1

No permission to download
Looks like a great add-on. I'm interested to see a few reviews and graphs to compare before and after.
 
I like everything that says 'cache'. Show me the before / after graph :)

This add-on is used to increase the site performance. It is very effective to reduce the number of queries, table lock reduces risk, accelerates page load when many people simultaneously access ...

http://muare.vn. There are more than 155000 visits / day on this site. It uses a version of Xen Cache. Currently the site is working fine.
 
Last edited:
This add-on is used to increase the site performance. It is very effective to reduce the number of queries, table lock reduces risk, accelerates page load when many people simultaneously access ...

http://muare.vn. There are more than 1550000 visits / day on this site. It uses a version of Xen Cache. Currently the site is working fine.

I'm currently on cloudflare, would there be any conflicts with their service?
 
Like minify thing right? :)
I already tried this addon on my local install, it saves 3 query on forum_view.

If you turn on debug mod. Take a look at the following query on the homepage (http://xenforo.com/community) and online page (http://xenforo.com/community/online):

Code:
SELECT session_activity.*
    ,
    user.*,
    user_profile.*,
    user_option.*
FROM xf_session_activity AS session_activity

    LEFT JOIN xf_user AS user ON
        (user.user_id = session_activity.user_id)
    LEFT JOIN xf_user_profile AS user_profile ON
        (user_profile.user_id = user.user_id)
    LEFT JOIN xf_user_option AS user_option ON
        (user_option.user_id = user.user_id)
WHERE (session_activity.view_date > 1389713457)
ORDER BY session_activity.view_date DESC

This query also uses hidden in some other place. For example: Last update User Activity Sessions From ...

This add-on also saves it.
 
  • Like
Reactions: rdn
What about caching the last post also?

View attachment 64818

No, it does not caching the last post. However, some of the information is stored in the xf_thread tables to offload query (JOIN). So I suggest not to set the option "List Forum Thread" or "List Sticky Forum" is too long for the viewer still feels realtime. With the big board just 5 second cache has too effective.
 
  • Like
Reactions: rdn
Looking good. Is there any point to use this add-on and @xfrocks [bd]Cache together? Will they interfere or is the site going to be even a bit faster?
 
Top Bottom