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 `item` ADD INDEX `item_idx_sale_type_picture` (`sale_type`,`picture`);
ALTER TABLE `item` ADD INDEX `item_idx_score` (`score`);
SELECT
i.id,
i.sale_type,
i.property_type,
i.title,
i.property_name,
i.latitude,
i.longitude,
i.street_number,
i.street_name,
i.post_code,
i.picture,
i.url,
i.score,
i.dw_id,
i.post_date
FROM
item i
WHERE
i.picture IS NOT NULL
AND i.picture != ''
AND i.sale_type = 0
ORDER BY
i.score DESC LIMIT 110000,
60