XF2 Basic [Xon] Redis Cache 2.17.2

No permission to download
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: https://xenforo.com/docs/xf2/cache/

@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:

https://community.centminmod.com/threads/xenforo-2-1-0-beta-1-install-2-1-0-final-upgrade-on-centmin-mod-123-09beta01-lemp-stack.16060/

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.

redis-options.png




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


redis-stats.png



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)
Author
XFModz
Downloads
2
Views
366
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from XFModz

Latest updates

  1. 2.17.2

    Fix high availability support where css updates would be sent to a possible readonly replica...
  2. [Xon] Redis Cache 2.15.4

    Fix helper code to expire/purge redis keys did not support non-main cache backends. If using a...
  3. [Xon] Redis Cache 2.15.3

    Update credis library Fix possible php 8.1 compatibility issue
Back
Top