Opened 3 years ago
Closed 3 years ago
#11373 closed enhancement (fixed)
get_page_by_path() enhancements
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.1 |
| Component: | Cache | Version: | 2.9 |
| Severity: | normal | Keywords: | early has-patch commit gsoc |
| Cc: | shidouhikari, wojtek.szkutnik@… |
Description
The attached file works around a few queries in get_page_by_path() when memcached is used on a site, by trying to fetch page parents in the object cache before fetching the needed data in the database.
Attachments (2)
Change History (15)
Denis-de-Bernardy — 3 years ago
Is there any good reason why get_page() or get_post() couldnt be used inside that loop to take care of the query & caching?
comment:4
in reply to:
↑ 3
Denis-de-Bernardy — 3 years ago
- Keywords commit added
- Milestone changed from Future Release to 3.0
Replying to dd32:
Is there any good reason why get_page() or get_post() couldnt be used inside that loop to take care of the query & caching?
Depends if you want to do a SELECT * or not... This one can safely get checked in, I've been using it on my own site for months.
comment:6
in reply to:
↑ 3
shidouhikari — 3 years ago
- Cc shidouhikari added
Replying to dd32:
Is there any good reason why get_page() or get_post() couldnt be used inside that loop to take care of the query & caching?
get_page() is used below, when desired page is found. While it's not found, database is queried inside 2 TWO loops over and over again searching for the desired page. And when that's the case, all we need is post_parent, post_name and ID.
If that post is in cache, there's no need to query database, just get it from cache and move on. Faster and secure. I vote for this patch to be commited :)
- Version changed from 3.0 to 2.9
Please don't change reported versions. They should reflect the version used in the report, or in cases where it is researched, the earliest instance where the report applies.
wojtek.szkutnik — 3 years ago
comment:11
wojtek.szkutnik — 3 years ago
- Keywords gsoc added
comment:13
ryan — 3 years ago
- Resolution set to fixed
- Status changed from new to closed

Related: #11292 and #10381.