Resource icon

Unmaintained Zend Redis Cache 1.6.0

No permission to download
Properly support when "automatic_serialization" is true in config.php

This setting causes double serialization and deserializing when fetching data from the cache. So you really don't want to be using it if possible.

Warning
Changing this setting without flushing the cache will make your site behave poorly and throw errors!
Instead of allowing CSS Entries to naturally expire after 7 days, this addon now selectively prunes the expired CSS out of the Redis instance when the style cache is rebuild.

The entire style cache is rebuilt on:
  • addon install/upgrade
  • Template/Css changes
  • Style Property changes
And likely a few more places. This potentially will result in a large number of keys which will never be used again if you are tweaking this properties on a live site.

This addon now uses a fork of credis to implement access to Redis's SCAN command.
Corrected assumptions about how getMulti is called, which broke [db] WidgetFramework support.
Due to a coding error, MultiGet wasn't returning results properly.
XenForo_Model_DataRegistry::getMulti calls Cache->get() in a loop.

This update provides a version of XenForo_Model_DataRegistry which implements pipelining of the requests to reduce the latency of loading the default cache items for every request.

To activate, add the following line to the config.php file. Preferably after setting up the cache.
PHP:
require(XenForo_Application::getConfigDir().'/SV/RedisCache/Installer.php');
Top Bottom