• Your Files, Your Rules – Upgrade Today! Exciting news! With our new ownership, you’re no longer limited—upload files from here to any website without getting Banned. 🚀 Why wait? Upgrade your account now
Xon - Redis Cache

Free Xon - Redis Cache 2.18.1

Compatible XF Versions
  1. 2.1
  2. 2.2
  3. 2.3
This add-on uses Credis with a custom cache provider for Redis. For best performance, install the php extension: phpredis

You must have a Redis instance installed, this is likely not possible with shared hosting

While XenForo 2 has a redis connector, it requires phpredis. This add-on does not.

Feature overview
  • A pure php redis connector
  • High availability support
  • Exposes redis cache object for use for use by other add-ons
  • Implements some minor caching of forum thread counts
  • Redirect's XenForo's individual css template caching to hit redis as otherwise it causes unexpected write & deadlocking on the xf_css_cache table
Installation

Edit src/config.php and add:
Code:
$config['cache']['enabled'] = true;
$config['cache']['sessions'] = true;
$config['cache']['provider'] = 'SV\RedisCache\Redis';
$config['cache']['config'] = [
    'server' => '127.0.0.1',
    'port' => 6379,
];

For details see the XenForo Manual: Cache support - XenForo Manual

@eva2000 has also written an in-depth walkthrough around setting up redis and this add-on:
See "Xon's Redis Cache Addon For Xenforo 2.x" from:
community.centminmod.com

Troubleshooting

Please be aware that Redis is very sensitive to latency in a virtual environment. If repeated connection failures or protocol errors are experienced disable any Redis Persistence options.

Options
By default, forum thread counts are cached. In general, this is observable when moving large number of threads from one forum to another, and the total page counts are wrong.
Xon - Redis Cache-1.webp




Redis Statistics
Admincp dash board is extended with basic redis statistics:

Xon - Redis Cache-2.webp



Debugger Statistics
Include redis timings when using the _debug=1 view for a page

Read Scaling

With the $config['cache']['config']['load_from_replica'] option, reads can be deferred to a singular replica instance. This takes all the options of 'config' (except the replicaconfig)

See the FAQ for configuration samples.

High availability

The Zend component support primary/replica setups with Redis Sentinel support. It does not support Redis multi-master clustering.
  • Additionally, this add-on implement caching of thread counts in a forum.
  • Redis Sentinel support for high-availability (see FAQ for details).
  • xf-debugger-stats.webp
    xf-debugger-stats.webp
    13.1 KB · Views: 87
Author
XFdownloadStore
Downloads
5
Views
199
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from XFdownloadStore

Latest updates

  1. 2.18.1

    Fix XF2.3 support for some add-ons depending on extended redis functionality
  2. 2.18.0

    Restore XF2.1 support
  3. 2.17.2

    Fix high availability support where css updates would be sent to a possible readonly replica...
  4. 2.17.0

    XF2.3 compatibility update A bug in XenForo 2.3 Beta 1 (Fixed in beta 2) prevents XenForo from...
  5. 2.16.1

    Disable behavior which caused css.php to return a 404 on an invalid template. For the old...
Similar resources Most view View more
Back
Top