akismet_optimize_table

akismet_optimize_table

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('akismet_optimize_table') is found 3 times:

  • /wp-content/plugins/akismet/class.akismet.php line 599
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
            clean_comment_cache( $comment_ids );
            do_action( 'akismet_delete_comment_batch', is_countable( $comment_ids ) ? count( $comment_ids ) : 0 );
        }
     
        if ( apply_filters( 'akismet_optimize_table', ( mt_rand( 1, 5000 ) == 11 ), $wpdb->comments ) ) { // lucky number
            $wpdb->query( "OPTIMIZE TABLE {$wpdb->comments}" );
        }
    }
     
    public static function delete_old_comments_meta() {
        global $wpdb;
  • /wp-content/plugins/akismet/class.akismet.php line 632
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
            do_action( 'akismet_delete_commentmeta_batch', is_countable( $comment_ids ) ? count( $comment_ids ) : 0 );
        }
     
        if ( apply_filters( 'akismet_optimize_table', ( mt_rand( 1, 5000 ) == 11 ), $wpdb->commentmeta ) ) { // lucky number
            $wpdb->query( "OPTIMIZE TABLE {$wpdb->commentmeta}" );
        }
    }
     
    // Clear out comments meta that no longer have corresponding comments in the database
    public static function delete_orphaned_commentmeta() {
  • /wp-content/plugins/akismet/class.akismet.php line 672
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
                return;
            }
        }
     
        if ( apply_filters( 'akismet_optimize_table', ( mt_rand( 1, 5000 ) == 11 ), $wpdb->commentmeta ) ) { // lucky number
            $wpdb->query( "OPTIMIZE TABLE {$wpdb->commentmeta}" );
        }
    }
     
    // how many approved comments does this author have?
    public static function get_user_comments_approved( $user_id, $comment_author_email, $comment_author, $comment_author_url ) {