Changes between Initial Version and Version 1 of Ticket #63547, comment 3
- Timestamp:
- 06/08/2025 09:56:06 PM (9 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #63547, comment 3
initial v1 9 9 10 10 Since `wp_cron()` runs at the `init` action, which then schedules `_wp_cron()` to run at the `wp_loaded` action, meaning that if the loopback request takes longer than expected, every page load that spawns crawn will have a bad TTFB. 11 12 In particular, this [https://github.com/WordPress/wordpress-develop/blob/7d5fb7b4a98a4ac02ef0d7b354f11b1396363d51/src/wp-cron.php#L13-L14 comment] in `wp-cron.php` file header is ''false'': 13 14 > The HTTP request to this file will not slow down the visitor who happens to visit when a scheduled cron event runs. 11 15 12 16 ----