Plugin Directory

Changeset 1393336


Ignore:
Timestamp:
04/12/2016 08:58:32 PM (10 years ago)
Author:
andy
Message:

memcached 2.0.6: Flush local cache on wp_cache_flush()

Location:
memcached
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • memcached/tags/2.0.6/object-cache.php

    r1393154 r1393336  
    44Plugin Name: Memcached
    55Description: Memcached backend for the WP Object Cache.
    6 Version: 2.0.5
     6Version: 2.0.6
    77Plugin URI: http://wordpress.org/extend/plugins/memcached/
    88Author: Ryan Boren, Denis de Bernardy, Matt Martz
     
    194194
    195195    function flush() {
     196        $this->cache = array();
     197
    196198        // Don't flush if multi-blog.
    197199        if ( function_exists('is_site_admin') || defined('CUSTOM_USER_TABLE') && defined('CUSTOM_USER_META_TABLE') )
  • memcached/tags/2.0.6/readme.txt

    r1393154 r1393336  
    44Requires at least: 3.0
    55Tested up to: 4.5
    6 Stable tag: 2.0.5
     6Stable tag: 2.0.6
    77
    88Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache.
     
    7575== Changelog ==
    7676
     77= 2.0.6 =
     78* Flush the local cache on wp_cache_flush()
     79
    7780= 2.0.5 =
    7881* Fix missing global in switch_to_blog
  • memcached/trunk/object-cache.php

    r1393154 r1393336  
    44Plugin Name: Memcached
    55Description: Memcached backend for the WP Object Cache.
    6 Version: 2.0.5
     6Version: 2.0.6
    77Plugin URI: http://wordpress.org/extend/plugins/memcached/
    88Author: Ryan Boren, Denis de Bernardy, Matt Martz
     
    194194
    195195    function flush() {
     196        $this->cache = array();
     197
    196198        // Don't flush if multi-blog.
    197199        if ( function_exists('is_site_admin') || defined('CUSTOM_USER_TABLE') && defined('CUSTOM_USER_META_TABLE') )
  • memcached/trunk/readme.txt

    r1393154 r1393336  
    44Requires at least: 3.0
    55Tested up to: 4.5
    6 Stable tag: 2.0.5
     6Stable tag: 2.0.6
    77
    88Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache.
     
    7575== Changelog ==
    7676
     77= 2.0.6 =
     78* Flush the local cache on wp_cache_flush()
     79
    7780= 2.0.5 =
    7881* Fix missing global in switch_to_blog
Note: See TracChangeset for help on using the changeset viewer.