Opened 14 months ago
Last modified 14 months ago
#36905 assigned enhancement
Add caching to get_page_by_title
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | Future Release | Priority: | normal |
| Severity: | normal | Version: | 2.1 |
| Component: | Posts, Post Types | Keywords: | has-patch good-first-bug has-unit-tests |
| Focuses: | performance | Cc: |
Description
Add caching to get_page_by_title so it doesn't call the posts table.
Attachments (6)
Change History (14)
#1
@spacedmonkey
14 months ago
- Keywords has-patch needs-unit-tests added
#2
@boonebgorges
14 months ago
- Keywords good-first-bug added
- Milestone changed from Awaiting Review to Future Release
Change seems OK, but get_page_by_title() has no automated test coverage at all. We'll need basic tests to introduce this kind of change.
#3
@boonebgorges
14 months ago
Previously: #15805.
#4
@igmoweb
14 months ago
I propose to let WP_Query handle this.
I'd also propose to deprecate this function. Is not used by Core so plugins could use their own functions instead. Querying by title is not a very good idea so we would be discouraging developers to use this function (maybe just a little but more than nothing). @scribu said the same in here: https://core.trac.wordpress.org/ticket/20350#comment:1 I don't know if she would think the same today.
Anyway, here are my changes: Unit tests + changes inside the function (not deprecated though) so now it uses WP_Query instead.
#5
@DrewAPicture
14 months ago
- Keywords has-unit-tests added; needs-unit-tests removed
- Owner set to igmoweb
- Status changed from new to assigned
Assigning to mark the good-first-bug as "claimed".
@igmoweb Can you please combine 36905.2.patch and 36905.2.tests.patch into a single patch?
#6
@igmoweb
14 months ago
Done.
Do we now upload changes + tests in the same file? I thought it was the other way.
#7
@dd32
14 months ago
Do we now upload changes + tests in the same file? I thought it was the other way.
We used to do it separately as they were in two different repo's, they're now combined so doing it in one patch is easier to keep track of everything (especially when things start getting into multiple iterations)
#8
@igmoweb
14 months ago
36905.5.patch includes some improvements to the function:
- orderby is set to 'none' so it preserves the same order than the original function
- post_status is now an array with 'any' + all existent statuses even those that are excluded from search. This way, the query has less conditionals in WHERE clause and post_status field is not even filtered, like the original function.
- I added tests to check that the function query every single post status.
Related: #36711