_bbp_akismet_optimize_tables
_bbp_akismet_optimize_tables
Hook Type: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('_bbp_akismet_optimize_tables') is found 1 times:
- /includes/extend/akismet.php line 109310891090109110921093109410951096109710981099
* Determines whether tables should be optimized.
*
* @param int Random number between 1
and
5000.
*/
$optimize
= (int) apply_filters(
'_bbp_akismet_optimize_tables'
, mt_rand( 1, 5000 ),
array
(
$wpdb
->posts,
$wpdb
->postmeta ) );
// Lucky number 11
if
( 11 ===
$optimize
) {
$wpdb
->query(
"OPTIMIZE TABLE {$wpdb->posts}"
);
$wpdb
->query(
"OPTIMIZE TABLE {$wpdb->postmeta}"
);
}