Skip to content

Releases: backdrop-contrib/memcache

1.x-1.8.0-beta3

22 Aug 06:12
bfe9b43

Choose a tag to compare

1.x-1.8.0-beta3 Pre-release
Pre-release

What's Changed

  • Issue #3: Cache bins not being flushed on cache clear by @smaiorana in #4

New Contributors

Full Changelog: 1.x-1.8.0-beta2...1.x-1.8.0-beta3

1.x-1.8.0-beta2

19 Oct 00:43

Choose a tag to compare

1.x-1.8.0-beta2 Pre-release
Pre-release

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

13 Oct 07:31

Choose a tag to compare

1.x-1.8.0-beta1 Pre-release
Pre-release

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_cids property on the BackdropMemcache object.
  • bee CLI support added in addition to maintaining the current drush support.