Skill

SkillsSoftware Development › E-commerce & platform integrations

woocommerce-performance

Identify missing cache priming calls in WooCommerce PHP code. Use when writing or reviewing code that loads collections of post-based objects (products, orders), renders product lists with images, or reads multiple options in a loop or method.

Freerisk: low
woocommerceperformancephp

The full skill

— name: woocommerce-performance description: Identify missing cache priming calls in WooCommerce PHP code. Use when writing or reviewing code that loads collections of post-based objects (products, orders), renders product lists with images, or reads multiple options in a loop or method. — # WooCommerce Performance ## Post Cache Priming — [cache-priming.md](cache-priming.md) Use when writing or reviewing code that loads collections of post-based objects (products, orders) or renders product lists with images. Covers `_prime_post_caches()` usage patterns — both as a generation guide (apply these patterns when writing new code) and a review guide (flag missing priming in existing code). ## Options Cache Priming — [options-cache-priming.md](options-cache-priming.md) Use when writing or reviewing code that reads multiple non-autoloaded options in a loop or method. Covers `wp_prime_option_caches()` usage patterns for static key lists, derivable key patterns, and dynamically extracted key sets (excluding autoloaded options, which are already in cache).