Opened 17 years ago
Closed 11 years ago
#6860 closed enhancement (invalid)
Make clean_post_cache child cleaning optional
Reported by: | arnee | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 2.5.1 |
Component: | Posts, Post Types | Keywords: | has-patch gsoc |
Focuses: | performance | Cc: |
Description
clean_post_cache() makes a MySQL query in every call to clean the cache for child posts. This should be optional if the caller knows that there are no child posts or they're not cached.
Background: I need to query all posts have to clean the post cache to stay within the memory limits. Before 2.5 this was fine with clean_post_cache, but since the update the php execution time increased extremely because of this additional db query.
Attachments (2)
Change History (7)
Note: See
TracTickets for help on using
tickets.
New argument $recursive (true by default)