Changeset 1456175 for simple-cache
- Timestamp:
- 07/18/2016 03:32:32 AM (9 years ago)
- Location:
- simple-cache
- Files:
-
- 29 added
- 5 edited
-
tags/1.5.5 (added)
-
tags/1.5.5/README.md (added)
-
tags/1.5.5/assets (added)
-
tags/1.5.5/assets/css (added)
-
tags/1.5.5/assets/css/scss (added)
-
tags/1.5.5/assets/css/scss/settings.scss (added)
-
tags/1.5.5/assets/css/settings.css (added)
-
tags/1.5.5/assets/js (added)
-
tags/1.5.5/assets/js/settings.min.js (added)
-
tags/1.5.5/assets/js/src (added)
-
tags/1.5.5/assets/js/src/settings.js (added)
-
tags/1.5.5/inc (added)
-
tags/1.5.5/inc/class-sc-advanced-cache.php (added)
-
tags/1.5.5/inc/class-sc-config.php (added)
-
tags/1.5.5/inc/class-sc-cron.php (added)
-
tags/1.5.5/inc/class-sc-object-cache.php (added)
-
tags/1.5.5/inc/class-sc-settings.php (added)
-
tags/1.5.5/inc/dropins (added)
-
tags/1.5.5/inc/dropins/batcache.php (added)
-
tags/1.5.5/inc/dropins/file-based-page-cache.php (added)
-
tags/1.5.5/inc/dropins/memcached-object-cache.php (added)
-
tags/1.5.5/inc/dropins/redis-object-cache.php (added)
-
tags/1.5.5/inc/functions.php (added)
-
tags/1.5.5/languages (added)
-
tags/1.5.5/languages/simple-cache-tr_TR.mo (added)
-
tags/1.5.5/languages/simple-cache-tr_TR.po (added)
-
tags/1.5.5/languages/simple-cache.pot (added)
-
tags/1.5.5/readme.txt (added)
-
tags/1.5.5/simple-cache.php (added)
-
trunk/inc/class-sc-object-cache.php (modified) (1 diff)
-
trunk/inc/dropins/batcache.php (modified) (1 diff)
-
trunk/inc/dropins/memcached-object-cache.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/simple-cache.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-cache/trunk/inc/class-sc-object-cache.php
r1403511 r1456175 93 93 "\n\r" . "defined( 'ABSPATH' ) || exit;" . 94 94 "\n\r" . "define( 'SC_OBJECT_CACHE', true );" . 95 "\n\r" . 'if ( is_admin() ) { return; }' .96 95 "\n\r" . "if ( ! @file_exists( WP_CONTENT_DIR . '/sc-config/config-' . \$_SERVER['HTTP_HOST'] . '.php' ) ) { return; }" . 97 96 "\n\r" . "\$GLOBALS['sc_config'] = include( WP_CONTENT_DIR . '/sc-config/config-' . \$_SERVER['HTTP_HOST'] . '.php' );" . -
simple-cache/trunk/inc/dropins/batcache.php
r1422847 r1456175 55 55 var $remote = 0; // Zero disables sending buffers to remote datacenters (req/sec is never sent) 56 56 57 var $times = 1; // Only batcache a page after it is accessed this many times... (two or more)57 var $times = 2; // Only batcache a page after it is accessed this many times... (two or more) 58 58 var $seconds = 120; // ...in this many seconds (zero to ignore this and use batcache immediately) 59 59 -
simple-cache/trunk/inc/dropins/memcached-object-cache.php
r1397513 r1456175 218 218 219 219 function flush() { 220 221 // Don't flush if multi-blog.222 if ( function_exists( 'is_site_admin' ) || defined( 'CUSTOM_USER_TABLE' ) && defined( 'CUSTOM_USER_META_TABLE' ) ) {223 return true;224 }225 226 220 $ret = true; 227 221 foreach ( array_keys( $this->mc ) as $group ) { -
simple-cache/trunk/readme.txt
r1454479 r1456175 37 37 38 38 == Changelog == 39 40 = 1.5.5 = 41 * __Fix Memcache cache purging with the following:__ 42 * Allow Memcache flushing in multisite 43 * Include object cache within the admin 44 * Only batcache when a URL is accessed 2 times 39 45 40 46 = 1.5.4 = -
simple-cache/trunk/simple-cache.php
r1454479 r1456175 5 5 * Description: A simple caching plugin that just works. 6 6 * Author: Taylor Lovett 7 * Version: 1.5. 47 * Version: 1.5.5 8 8 * Text Domain: simple-cache 9 9 * Domain Path: /languages … … 13 13 defined( 'ABSPATH' ) || exit; 14 14 15 define( 'SC_VERSION', '1.5. 4' );15 define( 'SC_VERSION', '1.5.5' ); 16 16 17 17 require_once dirname( __FILE__ ) . '/inc/functions.php';
Note: See TracChangeset
for help on using the changeset viewer.