Curated resource guide
WordPress Backend Performance Resources
Trace slow WordPress administration, APIs, and logged-in experiences back to their server-side causes. This guide covers PHP workers, memory, database latency, object caching, cron, Action Scheduler, external requests, WooCommerce flows, profiling, concurrency, and application or infrastructure tuning.
Scope
What this guide covers
- PHP execution time
- PHP-FPM and workers
- memory usage
- database latency
- object cache
- WordPress bootstrap
- admin dashboard
- wp-admin AJAX
- REST API
- Heartbeat API
- WP-Cron
- Action Scheduler
- plugins
- hooks
- autoloaded options
- external HTTP requests
- filesystem calls
- session handling
- logged-in traffic
- WooCommerce cart/checkout/account areas
- profiling
- APM
- slow logs
- concurrency
- worker exhaustion
- queueing
- and server/application tuning
Selected references
Curated resources
Links open the original publisher so you can use the complete, current material in context.
- 01Recommended starting point
WordPress PHP Optimization
Review supported PHP versions, runtime configuration, memory, workers, and cron-related backend cost.
developer.wordpress.org - 02
PHP-FPM Installation and Configuration
The PHP manual covers process pools, workers, logging, environment handling, and operational FPM configuration.
php.net - 03
Query Monitor
See query timing, PHP errors, HTTP requests, hooks, scripts, and request context while diagnosing WordPress.
wordpress.org - 04
WP Object Cache Reference
The authoritative API reference for cache groups, keys, persistence expectations, and core object-cache operations.
developer.wordpress.org - 05
WordPress Cron Handbook
The official overview of WordPress scheduled work and the request-driven behavior that distinguishes it from system cron.
developer.wordpress.org - 06
Action Scheduler
A scalable WordPress job queue with logging, retries, batches, administration screens, and WP-CLI operations.
actionscheduler.org - 07
Xdebug Profiler
Collect call-level timing and memory profiles for evidence-based backend performance work.
xdebug.org