Releases: backdrop-contrib/memcache
Releases · backdrop-contrib/memcache
1.x-1.8.0-beta3
What's Changed
- Issue #3: Cache bins not being flushed on cache clear by @smaiorana in #4
New Contributors
- @smaiorana made their first contribution in #4
Full Changelog: 1.x-1.8.0-beta2...1.x-1.8.0-beta3
1.x-1.8.0-beta2
Switches to using memcache itself to maintain its own cache flush timestamps, as opposed to using the database and the state system. This fixes an issue with some cache entries not being cleared when using wildcard cache deletes. See #1.
1.x-1.8.0-beta1
Initial release of Memcache module for Backdrop. This corresponds with the latest Drupal release: 7.x-1.8, but differs in several key ways due to some differences in config/variable management:
- Instead of using variables for a mix of configuration, hard-coded settings.php options, and state management, this version separates them into the three Backdrop core concepts:
$settings(used in settings.php) for setting up memcache.state_set()for tracking cache flush times.config_set()for the memcache_admin configuration through the UI.
- The dependency on SESSION variables has been removed for performance and replaced with a
set_cidsproperty on theBackdropMemcacheobject. beeCLI support added in addition to maintaining the currentdrushsupport.