File: wp-includes/cache.php
-
functionwp_cache_flush_group()
Removes all cache items in a group, if the object cache implementation supports it.
-
functionwp_cache_supports()
Determines whether the object cache implementation supports a particular feature.
-
functionwp_cache_flush_runtime()
Removes all cache items from the in-memory runtime cache.
-
functionwp_cache_delete_multiple()
Deletes multiple values from the cache in one call.
-
functionwp_cache_add_multiple()
Adds multiple values to the cache in one call.
-
functionwp_cache_set_multiple()
Sets multiple values to the cache in one call.
-
functionwp_cache_get_multiple()
Retrieves multiple values from the cache in one call.
-
functionwp_cache_add()
Adds data to the cache, if the cache key doesn’t already exist.
-
functionwp_cache_add_global_groups()
Adds a group or set of groups to the list of global groups.
-
functionwp_cache_close()
Closes the cache.
-
Adds a group or set of groups to the list of non-persistent groups.
-
functionwp_cache_decr()
Decrements numeric cache item’s value.
-
functionwp_cache_reset()
Resets internal cache keys and structures.
-
functionwp_cache_delete()
Removes the cache contents matching key and group.
-
functionwp_cache_flush()
Removes all cache items.
-
functionwp_cache_get()
Retrieves the cache contents from the cache by key and group.
-
functionwp_cache_incr()
Increments numeric cache item’s value.
-
functionwp_cache_init()
Sets up Object Cache Global and assigns it.
-
functionwp_cache_replace()
Replaces the contents of the cache with new data.
-
functionwp_cache_set()
Saves the data to the cache.
-
functionwp_cache_switch_to_blog()
Switches the internal blog ID.