Download

All XenForo Resources for only 35.00 $ Months.

Support

Support 24/7 via DM.

Payment

Paypal secure payment.

Refunds

Once you download any Premium files, refunds will not be issued..

Redis Cache By Xon

Free Redis Cache By Xon 2.18.9

No permission to download
Compatible XF 2.x versions
2.2, 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:

PHP:
$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/

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)

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).
  • Like
Reactions: igorSH666 and modvb
Краткое описание:
XenForo + Redis Redis Cache By Xon
2.18.9
Version
2
Downloads
10
Views
First release
Last update
80.6 KB
File size
zip
Extension type
0.00 star(s) 0 ratings
Ratings
Uploader
Uploaded

More resources from Xenforo

Latest updates

  1. 2.18.9 - Bugfix update

    Fix XF2.3 compatibility where "Call to undefined method...

Similar resources

Alert Improvements by Xon Xenforo
A collection of improvements to the XenForo Alerts system.
Can Warn Staff by Xon Xenforo
Allow moderators and administrators to be warned.
Optimized List Queries by Xon Molok
A collection of replacement queries for getting lists of stuff aimed at large forums.
A number of helper utilities designed to ease add-on development
Back
Top