Hello,
I have a website with around 70000 channel entries and am having huge performance issues.
I am already using caching wherever I can which helped a bit.
After some debugging I wanted to ask you about a query, which really stood out:
2.1843 SELECT t.entry_id, t.title, t.url_title
FROM (exp_channel_titles AS t)
LEFT JOIN exp_channels AS w ON w.channel_id = t.channel_id WHERE t.entry_id != 121973 AND t.entry_date < 1347368390 AND t.entry_date <= 1344345162 AND IF (t.entry_date = 1344345162, t.entry_id < 121973, 1) AND (t.expiration_date = 0 OR t.expiration_date > 1347368390) AND w.site_id IN ('1') AND w.channel_name = 'network' AND t.status = 'open' ORDER BY t.entry_date DESC, t.entry_id DESC LIMIT 1Why is this query taking so long?
Is there any way to speed it up / am I doing sth wrong?
EE 2.4.0
Thnx