add_clean_index

函数
add_clean_index ( $table, $index )
参数
  • (string) $table Database table name.
    Required:
  • (string) $index Database table index column.
    Required:
返回值
  • (true) True, when done with execution.
定义位置
相关方法
add_screen_optionadd_linkadd_meta_boxclean_preadd_comment_meta
引入
1.0.1
弃用
-

add_clean_index: 这个函数用于在数据库中创建一个新的清洁索引,以加快搜索速度。它通常由插件和主题开发人员使用,以加快大数据集上某些类型的搜索。

为一个指定的表添加索引。

function add_clean_index( $table, $index ) {
	global $wpdb;

	drop_index( $table, $index );
	$wpdb->query( "ALTER TABLE `$table` ADD INDEX ( `$index` )" );

	return true;
}

常见问题

FAQs
查看更多 >