[ Index ] |
PHP Cross Reference of BuddyPress |
[Source view] [Print] [Project Stats]
Object Cache API
File Size: | 173 lines (5 kb) |
Included or required: | 2 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
wp_cache_add($key, $data, $flag = '', $expire = 0) X-Ref |
Adds data to the cache, if the cache key doesn't aleady exist. return: unknown param: int|string $key The cache ID to use for retrieval later param: mixed $data The data to add to the cache store param: string $flag The group to add the cache to param: int $expire When the cache data should be expired since: 2.0.0 |
wp_cache_close() X-Ref |
Closes the cache. This function has ceased to do anything since WordPress 2.5. The functionality was removed along with the rest of the persistent cache. This does not mean that plugins can't implement this function when they need to make sure that the cache is cleaned up after WordPress no longer needs it. return: bool Always returns True since: 2.0.0 |
wp_cache_delete($id, $flag = '') X-Ref |
Removes the cache contents matching ID and flag. return: bool True on successful removal, false on failure param: int|string $id What the contents in the cache are called param: string $flag Where the cache contents are grouped since: 2.0.0 |
wp_cache_flush( $group = null ) X-Ref |
Removes all cache items. return: bool Always returns true since: 2.0.0 |
wp_cache_get($id, $flag = '') X-Ref |
Retrieves the cache contents from the cache by ID and flag. return: bool|mixed False on failure to retrieve contents or the cache param: int|string $id What the contents in the cache are called param: string $flag Where the cache contents are grouped since: 2.0.0 |
wp_cache_init() X-Ref |
Sets up Object Cache Global and assigns it. since: 2.0.0 |
wp_cache_replace($key, $data, $flag = '', $expire = 0) X-Ref |
Replaces the contents of the cache with new data. return: bool False if cache ID and group already exists, true on success param: int|string $id What to call the contents in the cache param: mixed $data The contents to store in the cache param: string $flag Where to group the cache contents param: int $expire When to expire the cache contents since: 2.0.0 |
wp_cache_set($key, $data, $flag = '', $expire = 0) X-Ref |
Saves the data to the cache. return: bool False if cache ID and group already exists, true on success param: int|string $id What to call the contents in the cache param: mixed $data The contents to store in the cache param: string $flag Where to group the cache contents param: int $expire When to expire the cache contents since: 2.0 |
wp_cache_add_global_groups( $groups ) X-Ref |
Adds a group or set of groups to the list of global groups. param: string|array $groups A group or an array of groups to add since: 2.6.0 |
wp_cache_add_non_persistent_groups( $groups ) X-Ref |
Adds a group or set of groups to the list of non-persistent groups. param: string|array $groups A group or an array of groups to add since: 2.6.0 |
Generated: Thu Nov 21 01:00:57 2024 | Cross-referenced by PHPXref 0.7.1 |