Changeset 1393154
- Timestamp:
- 04/12/2016 05:11:09 PM (10 years ago)
- Location:
- memcached
- Files:
-
- 2 edited
- 3 copied
-
tags/2.0.5 (copied) (copied from memcached/trunk)
-
tags/2.0.5/object-cache.php (copied) (copied from memcached/trunk/object-cache.php) (2 diffs)
-
tags/2.0.5/readme.txt (copied) (copied from memcached/trunk/readme.txt) (2 diffs)
-
trunk/object-cache.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
memcached/tags/2.0.5/object-cache.php
r1388204 r1393154 4 4 Plugin Name: Memcached 5 5 Description: Memcached backend for the WP Object Cache. 6 Version: 2.0. 46 Version: 2.0.5 7 7 Plugin URI: http://wordpress.org/extend/plugins/memcached/ 8 8 Author: Ryan Boren, Denis de Bernardy, Matt Martz … … 313 313 314 314 function switch_to_blog( $blog_id ) { 315 global $table_prefix; 315 316 $blog_id = (int) $blog_id; 316 317 $this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ) . ':'; -
memcached/tags/2.0.5/readme.txt
r1388204 r1393154 1 1 === Memcached Object Cache === 2 Contributors: ryan, sivel 2 Contributors: ryan, sivel, andy 3 3 Tags: cache, memcached 4 4 Requires at least: 3.0 5 5 Tested up to: 4.5 6 Stable tag: 2.0. 46 Stable tag: 2.0.5 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 = 2.0.5 = 78 * Fix missing global in switch_to_blog 79 80 = 2.0.4 = 81 * Remove deprecated constructor 82 77 83 = 2.0.3 = 78 84 * Support for unix sockets -
memcached/trunk/object-cache.php
r1388204 r1393154 4 4 Plugin Name: Memcached 5 5 Description: Memcached backend for the WP Object Cache. 6 Version: 2.0. 46 Version: 2.0.5 7 7 Plugin URI: http://wordpress.org/extend/plugins/memcached/ 8 8 Author: Ryan Boren, Denis de Bernardy, Matt Martz … … 313 313 314 314 function switch_to_blog( $blog_id ) { 315 global $table_prefix; 315 316 $blog_id = (int) $blog_id; 316 317 $this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ) . ':'; -
memcached/trunk/readme.txt
r1388204 r1393154 1 1 === Memcached Object Cache === 2 Contributors: ryan, sivel 2 Contributors: ryan, sivel, andy 3 3 Tags: cache, memcached 4 4 Requires at least: 3.0 5 5 Tested up to: 4.5 6 Stable tag: 2.0. 46 Stable tag: 2.0.5 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 = 2.0.5 = 78 * Fix missing global in switch_to_blog 79 80 = 2.0.4 = 81 * Remove deprecated constructor 82 77 83 = 2.0.3 = 78 84 * Support for unix sockets
Note: See TracChangeset
for help on using the changeset viewer.