次のような名前と地域を検索するために、Wordpress サイトに作成した検索機能があります。
#name search
select user_id from wp_usermeta where meta_key='first_name'
AND meta_value LIKE 'term'
AND user_id in (SELECT post_author FROM wp_posts WHERE post_type='attachment'
AND length(post_content) > 0
AND length(post_title) > 0
AND post_author in (SELECT post_author FROM wp_posts WHERE post_type='article'))
UNION
#locality search
select user_id from wp_usermeta where meta_key in ('zip', 'city', 'state', 'country')
AND user_id in (select user_id from wp_usermeta where meta_key = 'user_type'and meta_value = 'user')
AND (meta_value LIKE 'term')
AND user_id in (SELECT post_author FROM wp_posts WHERE post_type='attachment'
AND length(post_content) > 0
AND length(post_title) > 0
AND post_author in (SELECT post_author FROM wp_posts WHERE post_type='article'))
group by user_id
この実行には約 3 秒かかります。このクエリをより高速に記述できる方法がないかどうかを確認しようとしています。私はinnoDBとインデックスを持っていますが、たくさんのレコードがあります。これは私が持っているクエリの最速バージョンですが、3 秒でもかなり遅いです。何か案は?
EDIT (SQL Explain 結果、最後から 2 番目の値は行数):
'1', 'PRIMARY', 'wp_usermeta', 'ref', 'meta_key,FH_DanB_1', 'FH_DanB_1', '768', 'const', '98252', 'Using where'
'2', 'DEPENDENT SUBQUERY', 'wp_posts', 'index_subquery', 'type_status_date,post_author', 'post_author', '8', 'func', '1', 'Using where'
'3', 'DEPENDENT SUBQUERY', 'wp_posts', 'index_subquery', 'type_status_date,post_author', 'post_author', '8', 'func', '1', 'Using where'
'4', 'UNION', 'wp_usermeta', 'index', 'meta_key,FH_DanB_1', 'user_id', '8', NULL, '510714', 'Using where'
'6', 'DEPENDENT SUBQUERY', 'wp_posts', 'index_subquery', 'type_status_date,post_author', 'post_author', '8', 'func', '1', 'Using where'
'7', 'DEPENDENT SUBQUERY', 'wp_posts', 'index_subquery', 'type_status_date,post_author', 'post_author', '8', 'func', '1', 'Using where'
'5', 'DEPENDENT SUBQUERY', 'wp_usermeta', 'ref', 'user_id,meta_key,FH_DanB_1', 'FH_DanB_1', '776', 'const,func', '1', 'Using where'
wp_usermeta には 50 万行を超える行がありますが、列 meta_value にインデックスを付ける必要があると思いますか?
クエリ自体を構文的に高速化できるかどうかはわかりません。
ここで使用される 2 つのテーブルは wp_posts (post_author、post_date、post_date_gmt、post_content、post_title、post_excerpt、post_status、comment_status、ping_status、post_password、post_name、to_ping、pinged、post_modified、post_modified_gmt、post_content_filtered、post_parent、guid、menu_order、post_type、post_mime_type、comment_count) です。 、up、down、popularity、robotsmeta、meta_robots) および wp_usermeta (meta_id、user_id、meta_key、meta_value)。wp_posts.post_author 値は wp_usermeta.user_id と同じです。wp_posts には 10 万行以上、wp_usermeta には 50 万行以上あります。