Plugin Directory

Changeset 596744


Ignore:
Timestamp:
09/10/2012 01:11:29 AM (14 years ago)
Author:
sivel
Message:

Update readme and bump to 2.0.2

Location:
memcached
Files:
2 edited
1 copied

Legend:

Unmodified
Added
Removed
  • memcached/tags/2.0.2/readme.txt

    r428270 r596744  
    33Tags: cache, memcached
    44Requires at least: 3.0
    5 Tested up to: 3.2.1
    6 Stable tag: 2.0.1
     5Tested up to: 3.5
     6Stable tag: 2.0.2
    77
    88Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache.
     
    14141. Install [memcached](http://danga.com/memcached) on at least one server. Note the connection info. The default is `127.0.0.1:11211`.
    1515
    16 1. Install the [PECL memcache extension](http://pecl.php.net/package/memcache) 
     161. Install the [PECL memcache extension](http://pecl.php.net/package/memcache)
    1717
    18181. Copy object-cache.php to wp-content
     19
     20== Frequently Asked Questions ==
     21
     22= How can I manually specify the memcached server(s)? =
     23
     24Add 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
     35The 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
     37Possible cache groups are:
     38
     39`
     40{$taxonomy}_relationships
     41{$meta_type}_meta
     42{$taxonomy}_relationships
     43blog-details
     44blog-id-cache
     45blog-lookup
     46bookmark
     47calendar
     48category
     49comment
     50counts
     51general
     52global-posts
     53options
     54plugins
     55post_ancestors
     56post_meta
     57posts
     58rss
     59site-lookup
     60site-options
     61site-transient
     62terms
     63themes
     64timeinfo
     65transient
     66user_meta
     67useremail
     68userlogins
     69usermeta
     70users
     71userslugs
     72widget
     73`
    1974
    2075== Changelog ==
     
    2681* Fix setting and getting 0
    2782* 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  
    33Tags: cache, memcached
    44Requires at least: 3.0
    5 Tested up to: 3.2.1
    6 Stable tag: 2.0.1
     5Tested up to: 3.5
     6Stable tag: 2.0.2
    77
    88Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache.
     
    14141. Install [memcached](http://danga.com/memcached) on at least one server. Note the connection info. The default is `127.0.0.1:11211`.
    1515
    16 1. Install the [PECL memcache extension](http://pecl.php.net/package/memcache) 
     161. Install the [PECL memcache extension](http://pecl.php.net/package/memcache)
    1717
    18181. Copy object-cache.php to wp-content
     19
     20== Frequently Asked Questions ==
     21
     22= How can I manually specify the memcached server(s)? =
     23
     24Add 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
     35The 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
     37Possible cache groups are:
     38
     39`
     40{$taxonomy}_relationships
     41{$meta_type}_meta
     42{$taxonomy}_relationships
     43blog-details
     44blog-id-cache
     45blog-lookup
     46bookmark
     47calendar
     48category
     49comment
     50counts
     51general
     52global-posts
     53options
     54plugins
     55post_ancestors
     56post_meta
     57posts
     58rss
     59site-lookup
     60site-options
     61site-transient
     62terms
     63themes
     64timeinfo
     65transient
     66user_meta
     67useremail
     68userlogins
     69usermeta
     70users
     71userslugs
     72widget
     73`
    1974
    2075== Changelog ==
     
    2681* Fix setting and getting 0
    2782* 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.