Resource icon

Unmaintained Zend Redis Cache 1.6.0

No permission to download
  • Redis Sentinel support for high-availability. See http://redis.io/topics/sentinel for more information.
  • Enable with:
    Code:
    $config['cache']['backendOptions']['sentinel_master_set'] = 'mymaster';
    $config['cache']['backendOptions']['server'] = '127.0.0.1:26379';
    • 'server' now points to a comma delimited list of sentinal servers to find the master.
    • 'mymaster' must match sentinel configuration.
    • the port must be explicitly listed
  • Update redis library to fix compatibility issue when phpredis is not installed.
  • Fixes various methods for scanning for keys.
    • Required for Trending Content Tags 1.1.0 (not yet released)
  • Display phpredis module version and is lua is enabled on the Redis Info block on the AdminCP home page.
  • Correctly use configuration directory argument.
In your config.php, please change from:
Code:
require(XenForo_Application::getConfigDir().'/SV/RedisCache/Installer.php');
To:
Code:
require(XenForo_Application::getInstance()->getConfigDir().'/SV/RedisCache/Installer.php');
  • Support for SVG Template, and aging out cached SVG's on a styel change
  • Update bundled credis library to include support for more Sorted Set operations.
    • This feature is not yet used by any of my public add-ons.
  • Like
Reactions: Earl and Sunka
  • Improve AdminCP redis stats reporting for non-default redis database index. Thanks @eva2000 for reporting this.
  • Upstream bugfix for calling 'start pipelining' twice.
    • Affects instrumentation or redis proxies, as redis silently ignores the 2nd call.
  • Included example config now includes all possible configuration options with their defaults.
  • 1.1.7 release contained a bug from upstream credis library if a write occurred and then continued to occur. This has been fixed by upstream.
  • Track latest Redis integration component (Credis project).
    • Improved fwrite handling to retry once if 0 is returned. Help some random 'Failed to write entire command to stream' messages.
  • Cleanup CSS cache invalidation logic.
Note; This is a very minor update.
  • Track latest Redis integration component (Credis project).
Top Bottom