In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
ALTER TABLE `team` ADD INDEX `team_idx_id_elo` (`id`,`elo`);
ALTER TABLE `user_match` ADD INDEX `user_match_idx_value_status_team_id` (`value`,`status`,`team_one_id`);
SELECT
m.id,
m.value,
m.teamOneScore,
m.teamTwoScore,
m.date,
m.status,
m.detail,
m.team_one_id,
m.team_two_id
FROM
user_match m
INNER JOIN
team t
ON m.team_one_id = t.id
WHERE
t.id = m.team_one_id
AND t.id <> 3
AND t.elo <= 200
AND t.elo >= 100
AND m.value = '0.5'
AND m.status = 'search' LIMIT 1