Ho un sito WordPress con più di 8000 post e ogni volta che ne aggiungo uno nuovo il sito non risponde. Ho controllato il registro delle query lente di MySQL e ho scoperto che sta eseguendo una selezione che restituisce la maggior parte delle righe nella tabella dei messaggi e impiega molto tempo per essere eseguita.
Questo è un esempio:
Query_time: 149.702704
Lock_time: 0.000078
Rows_sent: 4699
Rows_examined: 9398
Rows_affected: 0
Rows_read: 4699
use 488726_wp;
SELECT `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_status`, `post_name`, `post_modified`, `post_modified_gmt`, `post_parent`, `post_type`
FROM `wp_posts`
WHERE ( (post_status = 'publish' AND (post_type = 'post' OR post_type = ''))
OR (post_status = 'publish' AND post_type = 'page') )
AND post_password=''
ORDER BY post_modified DESC;
Come posso trovare l'origine di queste query?