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:
SELECT
post.id,
short_story,
SUBSTRING(full_story,
1,
15) AS full_story,
xfields,
title,
category,
alt_name,
comm_num,
allow_comm,
allow_rate,
FIXED,
rating,
vote_num,
news_read,
votes,
editdate,
editor,
reason,
view_edit,
tags
FROM
post
LEFT JOIN
post_plus
ON (
post.id = post_plus.news_id
)
WHERE
category REGEXP '[[:<:]](130|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|21|22|24|25|26|27|29|133|135|125|20|132)[[:>:]]'
AND category REGEXP '[[:<:]](73)[[:>:]]'
AND approve = 1
ORDER BY
FIXED DESC,
DATE DESC LIMIT 98,
7