Changeset 596744
- Timestamp:
- 09/10/2012 01:11:29 AM (14 years ago)
- Location:
- memcached
- Files:
-
- 2 edited
- 1 copied
-
tags/2.0.2 (copied) (copied from memcached/trunk)
-
tags/2.0.2/readme.txt (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
memcached/tags/2.0.2/readme.txt
r428270 r596744 3 3 Tags: cache, memcached 4 4 Requires at least: 3.0 5 Tested up to: 3. 2.16 Stable tag: 2.0. 15 Tested up to: 3.5 6 Stable tag: 2.0.2 7 7 8 8 Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache. … … 14 14 1. Install [memcached](http://danga.com/memcached) on at least one server. Note the connection info. The default is `127.0.0.1:11211`. 15 15 16 1. Install the [PECL memcache extension](http://pecl.php.net/package/memcache) 16 1. Install the [PECL memcache extension](http://pecl.php.net/package/memcache) 17 17 18 18 1. Copy object-cache.php to wp-content 19 20 == Frequently Asked Questions == 21 22 = How can I manually specify the memcached server(s)? = 23 24 Add something similar to the following to wp-config.php above `/* That's all, stop editing! Happy blogging. */`: 25 26 ` 27 $memcached_servers = array( 28 'default' => array( 29 '10.10.10.20:11211', 30 '10.10.10.30:11211' 31 ) 32 ); 33 ` 34 35 The top level array keys, are cache groups, where 'default' corresponds to any cache group that is not explicitly defined. This allows for specifying memcached servers that only handle certain cache groups. The most common use is only specifying 'default'. 36 37 Possible cache groups are: 38 39 ` 40 {$taxonomy}_relationships 41 {$meta_type}_meta 42 {$taxonomy}_relationships 43 blog-details 44 blog-id-cache 45 blog-lookup 46 bookmark 47 calendar 48 category 49 comment 50 counts 51 general 52 global-posts 53 options 54 plugins 55 post_ancestors 56 post_meta 57 posts 58 rss 59 site-lookup 60 site-options 61 site-transient 62 terms 63 themes 64 timeinfo 65 transient 66 user_meta 67 useremail 68 userlogins 69 usermeta 70 users 71 userslugs 72 widget 73 ` 19 74 20 75 == Changelog == … … 26 81 * Fix setting and getting 0 27 82 * PHP 5.2.4 is now required 83 * Use the WP_CACHE_KEY_SALT constant if available to gaurantee uniqueness of keys -
memcached/trunk/readme.txt
r428270 r596744 3 3 Tags: cache, memcached 4 4 Requires at least: 3.0 5 Tested up to: 3. 2.16 Stable tag: 2.0. 15 Tested up to: 3.5 6 Stable tag: 2.0.2 7 7 8 8 Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache. … … 14 14 1. Install [memcached](http://danga.com/memcached) on at least one server. Note the connection info. The default is `127.0.0.1:11211`. 15 15 16 1. Install the [PECL memcache extension](http://pecl.php.net/package/memcache) 16 1. Install the [PECL memcache extension](http://pecl.php.net/package/memcache) 17 17 18 18 1. Copy object-cache.php to wp-content 19 20 == Frequently Asked Questions == 21 22 = How can I manually specify the memcached server(s)? = 23 24 Add something similar to the following to wp-config.php above `/* That's all, stop editing! Happy blogging. */`: 25 26 ` 27 $memcached_servers = array( 28 'default' => array( 29 '10.10.10.20:11211', 30 '10.10.10.30:11211' 31 ) 32 ); 33 ` 34 35 The top level array keys, are cache groups, where 'default' corresponds to any cache group that is not explicitly defined. This allows for specifying memcached servers that only handle certain cache groups. The most common use is only specifying 'default'. 36 37 Possible cache groups are: 38 39 ` 40 {$taxonomy}_relationships 41 {$meta_type}_meta 42 {$taxonomy}_relationships 43 blog-details 44 blog-id-cache 45 blog-lookup 46 bookmark 47 calendar 48 category 49 comment 50 counts 51 general 52 global-posts 53 options 54 plugins 55 post_ancestors 56 post_meta 57 posts 58 rss 59 site-lookup 60 site-options 61 site-transient 62 terms 63 themes 64 timeinfo 65 transient 66 user_meta 67 useremail 68 userlogins 69 usermeta 70 users 71 userslugs 72 widget 73 ` 19 74 20 75 == Changelog == … … 26 81 * Fix setting and getting 0 27 82 * PHP 5.2.4 is now required 83 * Use the WP_CACHE_KEY_SALT constant if available to gaurantee uniqueness of keys
Note: See TracChangeset
for help on using the changeset viewer.