มีข้อเสียของการใช้ wp_defer_term_counting หรือไม่
ฉันมีฐานข้อมูล WordPress พร้อมโพสต์กว่า 2 ล้านโพสต์ เมื่อใดก็ตามที่ฉันแทรกโพสต์ใหม่ฉันต้องโทรwp_set_object_termsซึ่งใช้เวลานานกว่าสองวินาทีในการดำเนินการ ฉันเจอโพสต์นี้ที่แนะนำให้โทรwp_defer_term_countingข้ามการนับคำ มีผลกระทบร้ายแรงต่อการทำงานของ WordPress หรือไม่หากฉันใช้วิธีการนี้ นี่คือรหัสจากโพสต์ในกรณีที่ลิงก์เสีย: function insert_many_posts(){ wp_defer_term_counting(true); $tasks = get_default_tasks(); for ($tasks as $task){ $post = array( 'post_title' => $task[content], 'post_author' => $current_user->ID, 'post_content' => '', 'post_type' => 'bpc_default_task', 'post_status' => 'publish' ); $task_id = wp_insert_post( $post ); if ( $task[category] ) //Make …