Changeset 1410579
- Timestamp:
- 05/04/2016 08:30:39 PM (10 years ago)
- Location:
- memcached
- Files:
-
- 4 edited
- 1 copied
-
tags/3.0.1 (copied) (copied from memcached/trunk)
-
tags/3.0.1/object-cache.php (modified) (2 diffs)
-
tags/3.0.1/readme.txt (modified) (2 diffs)
-
trunk/object-cache.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
memcached/tags/3.0.1/object-cache.php
r1400627 r1410579 4 4 Plugin Name: Memcached 5 5 Description: Memcached backend for the WP Object Cache. 6 Version: 3.0. 06 Version: 3.0.1 7 7 Plugin URI: http://wordpress.org/extend/plugins/memcached/ 8 8 Author: Ryan Boren, Denis de Bernardy, Matt Martz, Andy Skelton … … 352 352 global $table_prefix; 353 353 $blog_id = (int) $blog_id; 354 $this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ) . ':';354 $this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ); 355 355 } 356 356 -
memcached/tags/3.0.1/readme.txt
r1400627 r1410579 4 4 Requires at least: 3.0 5 5 Tested up to: 4.5 6 Stable tag: 3.0. 06 Stable tag: 3.0.1 7 7 8 8 Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache. … … 75 75 == Changelog == 76 76 77 = 3.0.1 = 78 * Fix key generation error in switch_to_blog() 79 77 80 = 3.0.0 = 78 81 * Flush site cache by rotating keys -
memcached/trunk/object-cache.php
r1400627 r1410579 4 4 Plugin Name: Memcached 5 5 Description: Memcached backend for the WP Object Cache. 6 Version: 3.0. 06 Version: 3.0.1 7 7 Plugin URI: http://wordpress.org/extend/plugins/memcached/ 8 8 Author: Ryan Boren, Denis de Bernardy, Matt Martz, Andy Skelton … … 352 352 global $table_prefix; 353 353 $blog_id = (int) $blog_id; 354 $this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ) . ':';354 $this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ); 355 355 } 356 356 -
memcached/trunk/readme.txt
r1400627 r1410579 4 4 Requires at least: 3.0 5 5 Tested up to: 4.5 6 Stable tag: 3.0. 06 Stable tag: 3.0.1 7 7 8 8 Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache. … … 75 75 == Changelog == 76 76 77 = 3.0.1 = 78 * Fix key generation error in switch_to_blog() 79 77 80 = 3.0.0 = 78 81 * Flush site cache by rotating keys
Note: See TracChangeset
for help on using the changeset viewer.