SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('options', 'languages', 'contentTypes', 'codeEventListeners', 'deferredRun', 'simpleCache', 'addOns', 'defaultStyleProperties', 'routeFiltersIn', 'routeFiltersOut', 'routesPublic', 'nodeTypes', 'bannedIps', 'discouragedIps', 'styles', 'displayStyles', 'userBanners', 'smilies', 'bbCode', 'threadPrefixes', 'userTitleLadder', 'reportCounts', 'moderationCounts', 'userModerationCounts', 'notices', 'userFieldsInfo')
Run Time: 0.001737
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 27 | | 26 | Using where |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
Run Time: 0.000907
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 27 | | 2 | Using where |
SELECT session_data
FROM xf_session
WHERE session_id = ?
AND expiry_date >= ?
Params: 28d628c3eb281609600a7f078e149af5, 1752641483
Run Time: 0.000676
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_session | const | PRIMARY,expiry_date | PRIMARY | 34 | const | 1 | |
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.001079
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT node.*
, permission.cache_value AS node_permission_cache
FROM xf_node AS node
LEFT JOIN xf_permission_cache_content AS permission
ON (permission.permission_combination_id = 1
AND permission.content_type = 'node'
AND permission.content_id = node.node_id)
WHERE node.node_id = ?
Params: 112
Run Time: 0.001707
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | permission | const | PRIMARY | PRIMARY | 35 | const,const,const | 1 | |
SELECT *
FROM xf_node
WHERE lft > ? AND rgt < ?
AND display_in_list = 1
ORDER BY lft ASC
Params: 127, 144
Run Time: 0.002277
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_node | ref | display_in_list,lft | display_in_list | 1 | const | 18 | Using index condition; Using where |
SELECT content_id, cache_value
FROM xf_permission_cache_content
WHERE permission_combination_id = ?
AND content_type = 'node'
Params: 1
Run Time: 0.000869
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_cache_content | ref | PRIMARY | PRIMARY | 31 | const,const | 73 | Using where |
SELECT forum.*
,
NULL AS forum_read_date
FROM xf_forum AS forum
INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
WHERE forum.node_id IN (93, 97, 66, 83, 81, 118, 120, 121)
Run Time: 0.001486
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | forum | range | PRIMARY | PRIMARY | 4 | | 8 | Using where |
SIMPLE | node | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.forum.node_id | 1 | Using index |
UPDATE `xf_session` SET `expiry_date` = ?, `session_data` = ? WHERE (session_id = '28d628c3eb281609600a7f078e149af5')
Params: 1752645083,
Run Time: 0.000971
INSERT INTO xf_session_activity
(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
VALUES
(?, ?, ?, ?, ?, ?, ?, ?, ?)
ON DUPLICATE KEY UPDATE
ip = VALUES(ip),
controller_name = VALUES(controller_name),
controller_action = VALUES(controller_action),
view_state = VALUES(view_state),
params = VALUES(params),
view_date = VALUES(view_date),
robot_key = VALUES(robot_key)
Params: 0, , , XenForo_ControllerPublic_Category, Index, valid, node_id=112, 1752641483,
Run Time: 0.000587
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('page_nav', 'node_forum_level_2', 'node_forum_level_n', 'hex_library_list_thumbnail_thumbnails', 'hex_library_list_replace_thumbnails', 'hex_forum_list_thumbnail_thumbnails', 'hex_forum_list_replace_thumbnails', 'wf_widget_wrapper', 'wf_widget_threads', 'wf_widget_online_staff', 'wf_widget_online_users', 'wf_widget_profile_posts', 'wf_widget_stats', 'category_view', 'nat_childlinks')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.001242
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 15 | Using where |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('home')
Params: 2
Run Time: 0.000707
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | const | PRIMARY | PRIMARY | 106 | const,const | 1 | |
SELECT thread.*
,
user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
node.title AS node_title, node.node_name
FROM xf_thread AS thread
LEFT JOIN xf_user AS user ON
(user.user_id = thread.user_id)
LEFT JOIN xf_node AS node ON
(node.node_id = thread.node_id)
WHERE (thread.node_id IN ('54')) AND (thread.discussion_state IN ('visible'))
ORDER BY thread.post_date DESC
LIMIT 30
Run Time: 0.011288
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | thread | index | node_id_last_post_date,node_id_sticky_state_last_post | post_date | 4 | | 2433 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.thread.user_id | 1 | |
SIMPLE | node | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.thread.node_id | 1 | |
SELECT content_id, cache_value
FROM xf_permission_cache_content
WHERE permission_combination_id = ?
AND content_type = 'node'
Params: 1
Run Time: 0.000844
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_cache_content | ref | PRIMARY | PRIMARY | 31 | const,const | 73 | Using where |
SELECT node.*, forum.*
FROM xf_forum AS forum
INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
WHERE node.node_id IN (54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54)
Run Time: 0.000983
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | forum | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT attachment.*,
data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
FROM xf_attachment AS attachment
INNER JOIN xf_attachment_data AS data ON
(data.data_id = attachment.data_id)
WHERE attachment.content_type = ?
AND attachment.content_id IN (391643, 391609, 391496, 391454, 391398, 391377, 391355, 391341, 391256, 391240)
AND (data.filename LIKE '%.png' OR
data.filename LIKE '%.jpg' OR
data.filename LIKE '%.jpeg' OR
data.filename LIKE '%.jpe' OR
data.filename LIKE '%.gif')
GROUP BY attachment.content_id
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.001284
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | attachment | range | content_type_id_date | content_type_id_date | 31 | | 10 | Using index condition; Using temporary; Using filesort |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.attachment.data_id | 1 | Using where |
SELECT
post.*
FROM xf_post AS post
WHERE post.post_id IN (391643, 391609, 391496, 391454, 391398, 391377, 391355, 391341, 391256, 391240)
Run Time: 0.000700
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | post | range | PRIMARY | PRIMARY | 4 | | 10 | Using where |
SELECT node.*, forum.*
FROM xf_forum AS forum
INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
WHERE node.node_id = ?
Params: 54
Run Time: 0.001123
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | forum | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT attachment.*,
data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
FROM xf_attachment AS attachment
INNER JOIN xf_attachment_data AS data ON
(data.data_id = attachment.data_id)
WHERE attachment.content_type = ?
AND attachment.content_id IN (391496, 391454, 391398, 391377, 391355, 391341, 391256, 391240)
AND (data.filename LIKE '%.png' OR
data.filename LIKE '%.jpg' OR
data.filename LIKE '%.jpeg' OR
data.filename LIKE '%.jpe' OR
data.filename LIKE '%.gif')
GROUP BY attachment.content_id
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.001085
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | attachment | range | content_type_id_date | content_type_id_date | 31 | | 8 | Using index condition; Using temporary; Using filesort |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.attachment.data_id | 1 | Using where |
SELECT session_activity.*
,
user.*
FROM xf_session_activity AS session_activity
LEFT JOIN xf_user AS user ON
(user.user_id = session_activity.user_id)
WHERE (session_activity.view_date > 1752640583)
ORDER BY session_activity.view_date DESC
Run Time: 0.000808
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | session_activity | range | view_date | view_date | 4 | | 3 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.session_activity.user_id | 1 | |
SELECT session_activity.*
,
user.*
FROM xf_session_activity AS session_activity
LEFT JOIN xf_user AS user ON
(user.user_id = session_activity.user_id)
WHERE (session_activity.view_date > 1752640583)
ORDER BY session_activity.view_date DESC
Run Time: 0.000908
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | session_activity | range | view_date | view_date | 4 | | 3 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.session_activity.user_id | 1 | |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc__1_category_view', 'wfc_1ba364531eabedf893b81')
Run Time: 0.002336
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 27 | | 2 | Using where |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc__1_category_view_lock')
Run Time: 0.000366
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc__1_category_view_lock, a:1:{s:20:"category_view_lock_6";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1752641483;}}
Run Time: 0.001116
SELECT profile_post.*
,
posting_user.*,
IF(posting_user.username IS NULL, profile_post.username, posting_user.username) AS username,
receiving_user.username
AS profile_username,
receiving_user.gender
AS profile_gender,
receiving_user.user_state
AS profile_user_state,
receiving_user.user_group_id
AS profile_user_group_id,
receiving_user.secondary_group_ids
AS profile_secondary_group_ids,
receiving_user.display_style_group_id
AS profile_display_style_group_id,
receiving_user.is_banned
AS profile_is_banned,
receiving_user.is_admin
AS profile_is_admin,
receiving_user.is_moderator
AS profile_is_moderator,
receiving_user.avatar_date
AS profile_avatar_date,
receiving_user.gravatar
AS profile_gravatar,
receiving_user.warning_points
AS profile_warning_points,
receiving_user.permission_combination_id
AS profile_permission_combination_id,
receiving_user_privacy.allow_view_profile
AS profile_allow_view_profile,
receiving_user_privacy.allow_post_profile
AS profile_allow_post_profile,
receiving_user_privacy.allow_send_personal_conversation
AS profile_allow_send_personal_conversation,
receiving_user_privacy.allow_view_identities
AS profile_allow_view_identities,
receiving_user_privacy.allow_receive_news_feed
AS profile_allow_allow_receive_news_feed,
IF (receiving_user_follow.follow_user_id, 1, 0)
AS following_0
FROM xf_profile_post AS profile_post
LEFT JOIN xf_user AS posting_user ON
(posting_user.user_id = profile_post.user_id)
LEFT JOIN xf_user AS receiving_user ON
(receiving_user.user_id = profile_post.profile_user_id)
LEFT JOIN xf_user_privacy AS receiving_user_privacy ON
(receiving_user_privacy.user_id = profile_post.profile_user_id)
LEFT JOIN xf_user_follow AS receiving_user_follow ON
(receiving_user_follow.user_id = profile_post.profile_user_id AND follow_user_id = 0)
WHERE (profile_post.message_state IN ('visible'))
ORDER BY profile_post.post_date DESC
LIMIT 15
Run Time: 0.016689
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | profile_post | ALL | | | | | 609 | Using where; Using temporary; Using filesort |
SIMPLE | posting_user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.profile_post.user_id | 1 | |
SIMPLE | receiving_user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.profile_post.profile_user_id | 1 | |
SIMPLE | receiving_user_privacy | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.profile_post.profile_user_id | 1 | |
SIMPLE | receiving_user_follow | range | PRIMARY,follow_user_id | follow_user_id | 4 | | 1 | Using where; Using index; Using join buffer (flat, BNL join) |
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc__1_category_view, a:1:{s:15:"category_view_6";a:3:{s:4:"html";s:6287:"<ul class="WidgetFramework_WidgetRenderer_ProfilePosts_ProfilePostList">
<li id="profile-post-692" class="profilePostListItem " data-author="LeanDropsReviews">
<a href="members/leandropsreviews.16545/" class="avatar Av16545s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="LeanDropsReviews" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/leandropsreviews.16545/" class="username" dir="auto"><span class="style2">LeanDropsReviews</span></a>
</span>
<article><blockquote class="ugc baseHtml">Official Website: - <a href="https://leandrops.ca/" rel="nofollow" class="externalLink" target="_blank">https://leandrops.ca/</a></blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/692/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1752580188" data-diff="61295" data-datestring="15/7/25" data-timestring="18:49">15/7/25 lúc 18:49</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/692/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
<li id="profile-post-691" class="profilePostListItem " data-author="Bruno Male Enhancement">
<a href="members/bruno-male-enhancement.16524/" class="avatar Av16524s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Bruno Male Enhancement" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/bruno-male-enhancement.16524/" class="username" dir="auto"><span class="style2">Bruno Male Enhancement</span></a>
</span>
<article><blockquote class="ugc baseHtml"><a href="https://www.facebook.com/BrunoMaleEnhancementChemistWarehouse.Australiaa" rel="nofollow" class="externalLink" target="_blank">https://www.facebook.com/BrunoMaleEnhancementChemistWarehouse.Australiaa</a></blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/691/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1752575445" data-diff="66038" data-datestring="15/7/25" data-timestring="17:30">15/7/25 lúc 17:30</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/691/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
<li id="profile-post-690" class="profilePostListItem " data-author="PremiumGlyco">
<a href="members/premiumglyco.16518/" class="avatar Av16518s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="PremiumGlyco" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/premiumglyco.16518/" class="username" dir="auto"><span class="style2">PremiumGlyco</span></a>
</span>
<article><blockquote class="ugc baseHtml">Premium Glyco Capsule Premium Glyco Capsule Reviews Premium Glyco Capsule For Blood Sugar</blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/690/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1752503266" data-diff="138217" data-datestring="14/7/25" data-timestring="21:27">14/7/25 lúc 21:27</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/690/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
<li id="profile-post-689" class="profilePostListItem " data-author="mitolynusa">
<a href="members/mitolynusa.16485/" class="avatar Av16485s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="mitolynusa" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/mitolynusa.16485/" class="username" dir="auto"><span class="style2">mitolynusa</span></a>
</span>
<article><blockquote class="ugc baseHtml">Globalweb@123</blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/689/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1752318779" data-diff="322704" data-datestring="12/7/25" data-timestring="18:12">12/7/25 lúc 18:12</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/689/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
<li id="profile-post-688" class="profilePostListItem " data-author="Volanixedge">
<a href="members/volanixedge.16443/" class="avatar Av16443s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="Volanixedge" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/volanixedge.16443/" class="username" dir="auto"><span class="style2">Volanixedge</span></a>
</span>
<article><blockquote class="ugc baseHtml">Volanixedge 5.3 AI Volanixedge 5.3 AI Erfahrungen Volanixedge 5.3 AI Plattform Volanixedge 5.3 AI Bewertungen</blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/688/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1752150656" data-diff="490827" data-datestring="10/7/25" data-timestring="19:30">10/7/25 lúc 19:30</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/688/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
</ul>";s:4:"time";i:1752641483;s:9:"extraData";a:1:{s:17:"requiredExternals";a:1:{s:3:"css";a:10:{i:0;s:24:"profile_post_list_simple";i:1;s:7:"bb_code";i:2;s:24:"profile_post_list_simple";i:3;s:7:"bb_code";i:4;s:24:"profile_post_list_simple";i:5;s:7:"bb_code";i:6;s:24:"profile_post_list_simple";i:7;s:7:"bb_code";i:8;s:24:"profile_post_list_simple";i:9;s:7:"bb_code";}}}}}
Run Time: 0.001547
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc__1_category_view_lock, a:1:{s:20:"category_view_lock_6";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1752641483;}}
Run Time: 0.000900
SELECT data_value
FROM xf_data_registry
WHERE data_key = ?
Params: boardTotals
Run Time: 0.000964
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('staff_online_now', 'members_online_now', 'forum_statistics')
Params: 2
Run Time: 0.000711
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | range | PRIMARY | PRIMARY | 106 | | 3 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('EWRporta_Navtabs', 'nat_linkstemplate', 'xm_widgets_threads', 'wf_hook_moderator_bar', 'PAGE_CONTAINER')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.000554
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 5 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRME_page_container_head')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.000309
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 60 | const,const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('nat_bodyjs')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.000571
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 60 | const,const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('VigLink')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.000375
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 60 | const,const,const | 1 | |