Changeset 19593 for trunk/wp-includes/cache.php
- Timestamp:
- 12/13/2011 11:45:31 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/cache.php
r18995 r19593 52 52 * 53 53 * @param int|string $key The cache key to increment 54 * @param int $offset The amount by which to decrement the item's value. 54 * @param int $offset The amount by which to decrement the item's value. Default is 1. 55 55 * @param string $group The group the key is in. 56 56 * @return false|int False on failure, the item's new value on success. … … 121 121 * 122 122 * @param int|string $key The cache key to increment 123 * @param int $offset The amount by which to increment the item's value. 123 * @param int $offset The amount by which to increment the item's value. Default is 1. 124 124 * @param string $group The group the key is in. 125 125 * @return false|int False on failure, the item's new value on success. … … 205 205 206 206 /** 207 * Reset internal cache keys and structures. 207 * Reset internal cache keys and structures. If the cache backend uses global blog or site IDs as part of its cache keys, 208 208 * this function instructs the backend to reset those keys and perform any cleanup since blog or site IDs have changed since cache init. 209 209 * … … 318 318 * 319 319 * @param int|string $key The cache key to increment 320 * @param int $offset The amount by which to decrement the item's value. 320 * @param int $offset The amount by which to decrement the item's value. Default is 1. 321 321 * @param string $group The group the key is in. 322 322 * @return false|int False on failure, the item's new value on success. … … 417 417 * 418 418 * @param int|string $key The cache key to increment 419 * @param int $offset The amount by which to increment the item's value. 419 * @param int $offset The amount by which to increment the item's value. Default is 1. 420 420 * @param string $group The group the key is in. 421 421 * @return false|int False on failure, the item's new value on success.
Note: See TracChangeset
for help on using the changeset viewer.