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.

  1. 02
    5

    PHP-FPM Installation and Configuration

    The PHP manual covers process pools, workers, logging, environment handling, and operational FPM configuration.

    php.net
  2. 03
    5

    Query Monitor

    See query timing, PHP errors, HTTP requests, hooks, scripts, and request context while diagnosing WordPress.

    wordpress.org
  3. 04
    5

    WP Object Cache Reference

    The authoritative API reference for cache groups, keys, persistence expectations, and core object-cache operations.

    developer.wordpress.org
  4. 05
    5

    WordPress Cron Handbook

    The official overview of WordPress scheduled work and the request-driven behavior that distinguishes it from system cron.

    developer.wordpress.org
  5. 06
    5

    Action Scheduler

    A scalable WordPress job queue with logging, retries, batches, administration screens, and WP-CLI operations.

    actionscheduler.org
  6. 07
    5

    Xdebug Profiler

    Collect call-level timing and memory profiles for evidence-based backend performance work.

    xdebug.org