RSS Feed/News Missing globally cached phrases

Status
Not open for further replies.

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
33,199
Points
823

Reputation:

Some commonly used in PHP code phrases are missing from the global phrase cache and cause unnecessary database queries

SQL:

Code:
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
    AND title IN ('public', 'email', 'admin')

SQL:

Code:
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
    AND title IN ('x_days_ago')

SQL:

Code:
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
    AND title IN ('block', 'scrolling', 'floating'...

Read more

Continue reading...
 
Status
Not open for further replies.
Top