Ho trovato 2 cose che rallentavano drasticamente la mia query e le ho corrette.
Per rispondere al primo problema, c'era bisogno di parentesi attorno all'intero "MATCH AGAINST OR MATCH AGAINST":
WHERE
b.`website_id` = %d
AND b.`status` = %d
AND b.`active` = %d
AND (
MATCH( a.`name`, a.`sku`, a.`description` ) AGAINST ( '%s' IN BOOLEAN MODE )
OR MATCH ( d.`name` ) AGAINST ( '%s' IN BOOLEAN MODE )
)
Non ho capito come usare EXPLAIN SELECT
, ma ha aiutato parecchio, quindi grazie! Ciò ha ridotto il primo numero di 16076 righe a 143. Ho poi notato le altre due con oltre 23 e 25 mila righe. Questa era la causa di questa riga:
LEFT JOIN ( SELECT `product_id`, `image`, `swatch` FROM `product_images` WHERE `sequence` = 0) AS c
ON (a.`product_id` = c.`product_id`)
C'era una ragione per cui stavo facendo questo in primo luogo, che poi è cambiata. Quando l'ho cambiato, non mi ero reso conto di poter fare un normale LEFT JOIN
:
LEFT JOIN `product_images` AS c
ON (a.`product_id` = c.`product_id`)
Questo rende la mia domanda finale in questo modo:(e MOLTO più veloce è passato da 196 secondi a 0,0084 circa)
SELECT
a.`product_id`, a.`name`, a.`slug`, a.`description`, b.`list_price`, b.`price`,
c.`image`, c.`swatch`, e.`name` AS industry,
MATCH( a.`name`, a.`sku`, a.`description` ) AGAINST ( '%s' IN BOOLEAN MODE ) AS relevance
FROM
`products` AS a LEFT JOIN `website_products` AS b
ON (a.`product_id` = b.`product_id`)
LEFT JOIN `product_images` AS c
ON (a.`product_id` = c.`product_id`)
LEFT JOIN `brands` AS d
ON (a.`brand_id` = d.`brand_id`)
INNER JOIN `industries` AS e
ON (a.`industry_id` = e.`industry_id`)
WHERE
b.`website_id` = %d
AND b.`status` = %d
AND b.`active` = %d
AND c.`sequence` = %d
AND (
MATCH( a.`name`, a.`sku`, a.`description` ) AGAINST ( '%s' IN BOOLEAN MODE )
OR MATCH( d.`name` ) AGAINST( '%s' IN BOOLEAN MODE )
)
GROUP BY a.`product_id`
ORDER BY relevance DESC
LIMIT 0, 9
Oh, e anche prima di eseguire una ricerca di testo completo con più tabelle, ci voleva circa 1/2 secondo. Questo è molto migliorato.