Cache (object cache) (category)

_prime_post_caches()

Adds any posts from the given IDs to the cache that do not already exist in cache

clean_comment_cache()

Removes a comment from the object cache.

clean_post_cache()

Will clean the post in the cache.

wp_cache_add()

Adds data to the cache, if the cache key doesn't already exist.

wp_cache_add_global_groups()

Adds a group or set of groups to the list of global groups.

wp_cache_add_non_persistent_groups()

Adds a group or set of groups to the list of non-persistent groups.

wp_cache_decr()

Decrements the value of the numeric cache item with the specified key and group.

wp_cache_delete()

Removes the cache contents matching key and group.

wp_cache_flush()

Completely clears the object cache. Deletes all items in the object cache.

wp_cache_flush_runtime()

Removes all cache items from the in-memory runtime cache.

wp_cache_get()

Retrieves the object cache data by specified cache key and group.

wp_cache_get_last_changed()

Gets last changed date for the specified cache group.

wp_cache_incr()

Increments the value of the numeric cache item with the specified cache key and group.

wp_cache_replace()

Replaces the contents of the cache with new data.

wp_cache_set()

Saves the data to the object cache. If data with this key already exists, it will be overwritten.

wp_clean_update_cache()

Clear existing update caches for plugins, themes, and core.

wp_defer_term_counting()

Enables or disables term counting.

wp_suspend_cache_addition()

Temporarily suspends cache additions. It means that you can't add new objects to the cache after using this function.

wp_suspend_cache_invalidation()

Suspends cache invalidation.

wp_using_ext_object_cache()

Toggle $_wp_using_ext_object_cache on and off without directly touching global.