SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.000299
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT thread.*
,
user.gender, user.avatar_date, user.gravatar,
NULL AS thread_read_date,
0 AS thread_is_watched
FROM xf_thread AS thread
LEFT JOIN xf_user AS user ON
(user.user_id = thread.user_id)
WHERE thread.thread_id = ?
Params: 174786
Run Time: 0.003752
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | thread | const | PRIMARY | PRIMARY | 4 | const | 1 | |
| SIMPLE | user | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT node.*, forum.*
,
permission.cache_value AS node_permission_cache,
NULL AS forum_read_date
FROM xf_forum AS forum
INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
LEFT JOIN xf_permission_cache_content AS permission
ON (permission.permission_combination_id = 1
AND permission.content_type = 'node'
AND permission.content_id = forum.node_id)
WHERE node.node_id = ?
Params: 109
Run Time: 0.000595
| 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 | |
| SIMPLE | permission | const | PRIMARY | PRIMARY | 85 | const,const,const | 1 | |
SELECT node.*, forum.*
FROM xf_forum AS forum
INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
INNER JOIN xf_thread AS thread ON
(thread.node_id = forum.node_id)
WHERE (thread.thread_id = 174786)
LIMIT 1
Run Time: 0.001073
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | thread | const | PRIMARY,node_id_last_post_date,node_id_sticky_last_post_date | PRIMARY | 4 | const | 1 | |
| SIMPLE | forum | const | PRIMARY | PRIMARY | 4 | const | 1 | |
| SIMPLE | node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT *
FROM EWRporta_options
WHERE option_id = ?
Params: recentnews_forum
Run Time: 0.000354
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_options | const | PRIMARY | PRIMARY | 152 | const | 1 | |
SELECT *
FROM EWRporta_promotes
WHERE thread_id = ?
Params: 174786
Run Time: 0.000512
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | | | | | | | | Impossible WHERE noticed after reading const tables |
SELECT post.*
,
user.*, IF(user.username IS NULL, post.username, user.username) AS username,
user_profile.*,
0 AS like_date, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 1) as dark_postrating_1_count
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 14) as dark_postrating_14_count
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 2) as dark_postrating_2_count
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 3) as dark_postrating_3_count
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 4) as dark_postrating_4_count
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 6) as dark_postrating_6_count
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 8) as dark_postrating_8_count
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 12) as dark_postrating_12_count
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 13) as dark_postrating_13_count
,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (1,2,4,6,8)) as positive_rating_count
,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (14,12,13)) as negative_rating_count
,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (3)) as neutral_rating_count
,
pr2.rating
FROM xf_post AS post
LEFT JOIN xf_user AS user ON
(user.user_id = post.user_id)
LEFT JOIN xf_user_profile AS user_profile ON
(user_profile.user_id = post.user_id)
LEFT JOIN dark_postrating pr2 ON (post.post_id = pr2.post_id and pr2.user_id = 0)
WHERE post.thread_id = ?
AND (post.position >= 0 AND post.position < 40)
AND (post.message_state IN ('visible'))
ORDER BY post.position ASC, post.post_date ASCParams: 174786
Run Time: 0.050855
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| PRIMARY | post | ref | thread_id_post_date,thread_id_position | thread_id_post_date | 4 | const | 9 | Using where; Using filesort |
| PRIMARY | user | eq_ref | PRIMARY | PRIMARY | 4 | valvetime_forums.post.user_id | 1 | |
| PRIMARY | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | valvetime_forums.post.user_id | 1 | |
| PRIMARY | pr2 | eq_ref | post_id_user_id,post_id_rating,user_id_rating | post_id_user_id | 8 | valvetime_forums.post.post_id,const | 1 | |
| DEPENDENT SUBQUERY | dark_postrating_count | eq_ref | user_id_rating | user_id_rating | 8 | valvetime_forums.post.user_id,const | 1 | |
| DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | valvetime_forums.post.user_id | 1 | Using index condition |
| DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | valvetime_forums.post.user_id | 1 | Using index condition |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.post.post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.post.post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.post.post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.post.post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.post.post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.post.post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.post.post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.post.post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.post.post_id,const | 1 | Using index |
INSERT DELAYED INTO xf_thread_view
(thread_id)
VALUES
(?)
Params: 174786
Run Time: 0.000293
SELECT *
FROM xf_node
WHERE lft < ? AND rgt > ?
ORDER BY lft ASC
Params: 80, 81
Run Time: 0.000354
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_node | ALL | lft | | | | 56 | Using where; Using filesort |
SELECT *
FROM EWRporta_options
WHERE option_id = ?
Params: recentnews_forum
Run Time: 0.000332
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_options | const | PRIMARY | PRIMARY | 152 | const | 1 | |
SELECT *
FROM EWRporta_promotes
WHERE thread_id = ?
Params: 174786
Run Time: 0.000227
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | | | | | | | | Impossible WHERE noticed after reading const tables |
INSERT INTO xf_session_activity
(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date)
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)
Params: 0, 839937191, 839937191, XenForo_ControllerPublic_Thread, Index, valid, thread_id=174786, 1371648531
Run Time: 0.000274
SELECT *
FROM kingk_bbcm
ORDER BY tag
Run Time: 0.000605
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | kingk_bbcm | ALL | | | | | 11 | Using filesort |
SELECT *
FROM EWRporta_layouts
WHERE layout_id = ?
Params: thread-174786
Run Time: 0.000437
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | | | | | | | | Impossible WHERE noticed after reading const tables |
SELECT *
FROM EWRporta_layouts
WHERE layout_id = ?
Params: thread-forum-109
Run Time: 0.000239
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | | | | | | | | Impossible WHERE noticed after reading const tables |
SELECT *
FROM EWRporta_layouts
WHERE layout_id = ?
Params: thread
Run Time: 0.000216
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_layouts | const | PRIMARY | PRIMARY | 77 | const | 1 | |
SELECT *, 'disabled' AS position
FROM EWRporta_blocks
WHERE active = 1
ORDER BY block_id ASC
Run Time: 0.000369
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_blocks | index | | PRIMARY | 77 | | 14 | Using where |
SELECT * FROM EWRporta_caches
Run Time: 0.000370
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_caches | ALL | | | | | 8 | |
SELECT * FROM EWRporta_options
Run Time: 0.000432
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_options | ALL | | | | | 37 | |
SELECT thread.*
,
user.*, thread.username AS username,
node.title AS node_title,
NULL AS thread_read_date,
0 AS thread_is_watched,
0 AS user_post_count,
permission.cache_value AS node_permission_cache, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 1) as dark_postrating_1_count, 1 as dark_postrating_has_fetched_max
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 14) as dark_postrating_14_count, 1 as dark_postrating_has_fetched_max
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 2) as dark_postrating_2_count, 1 as dark_postrating_has_fetched_max
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 3) as dark_postrating_3_count, 1 as dark_postrating_has_fetched_max
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 4) as dark_postrating_4_count, 1 as dark_postrating_has_fetched_max
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 6) as dark_postrating_6_count, 1 as dark_postrating_has_fetched_max
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 8) as dark_postrating_8_count, 1 as dark_postrating_has_fetched_max
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 12) as dark_postrating_12_count, 1 as dark_postrating_has_fetched_max
, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = thread.first_post_id and pr.rating = 13) as dark_postrating_13_count, 1 as dark_postrating_has_fetched_max
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)
LEFT JOIN xf_permission_cache_content AS permission
ON (permission.permission_combination_id = 1
AND permission.content_type = 'node'
AND permission.content_id = thread.node_id)
WHERE (thread.discussion_state IN ('visible')) AND (thread.last_post_date > 1371562131) AND thread.node_id IN ('32', '127', '88', '5', '101', '112', '61', '96', '78', '103', '120', '50', '66', '86', '129', '8', '109', '83', '6', '75')
ORDER BY thread.last_post_date DESC
LIMIT 6Run Time: 0.005392
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| PRIMARY | thread | range | node_id_last_post_date,node_id_sticky_last_post_date,last_post_date | last_post_date | 4 | | 9 | Using where |
| PRIMARY | user | eq_ref | PRIMARY | PRIMARY | 4 | valvetime_forums.thread.user_id | 1 | |
| PRIMARY | node | eq_ref | PRIMARY | PRIMARY | 4 | valvetime_forums.thread.node_id | 1 | |
| PRIMARY | permission | eq_ref | PRIMARY | PRIMARY | 85 | const,const,valvetime_forums.thread.node_id | 1 | Using where |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.thread.first_post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.thread.first_post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.thread.first_post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.thread.first_post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.thread.first_post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.thread.first_post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.thread.first_post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.thread.first_post_id,const | 1 | Using index |
| DEPENDENT SUBQUERY | pr | ref | post_id_rating | post_id_rating | 8 | valvetime_forums.thread.first_post_id,const | 1 | Using index |
SELECT cache_value
FROM xf_permission_cache_content
WHERE permission_combination_id = ?
AND content_type = ?
AND content_id = ?
Params: 1, node, 32
Run Time: 0.000222
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_permission_cache_content | const | PRIMARY | PRIMARY | 85 | const,const,const | 1 | |
SELECT cache_value
FROM xf_permission_cache_content
WHERE permission_combination_id = ?
AND content_type = ?
AND content_id = ?
Params: 1, node, 8
Run Time: 0.000238
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_permission_cache_content | const | PRIMARY | PRIMARY | 85 | const,const,const | 1 | |
SELECT cache_value
FROM xf_permission_cache_content
WHERE permission_combination_id = ?
AND content_type = ?
AND content_id = ?
Params: 1, node, 6
Run Time: 0.000213
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_permission_cache_content | const | PRIMARY | PRIMARY | 85 | const,const,const | 1 | |
SELECT session_activity.*
,
user.*,
user_profile.*,
user_option.*
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (1,2,4,6,8)) as positive_rating_count
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (14,12,13)) as negative_rating_count
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (3)) as neutral_rating_count
FROM xf_session_activity AS session_activity
LEFT JOIN xf_user AS user ON
(user.user_id = session_activity.user_id)
LEFT JOIN xf_user_profile AS user_profile ON
(user_profile.user_id = user.user_id)
LEFT JOIN xf_user_option AS user_option ON
(user_option.user_id = user.user_id)
WHERE (session_activity.view_date > 1371647631)
ORDER BY session_activity.view_date DESC
Run Time: 0.021780
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| PRIMARY | session_activity | ALL | view_date | | | | 7723 | Using where; Using filesort |
| PRIMARY | user | eq_ref | PRIMARY | PRIMARY | 4 | valvetime_forums.session_activity.user_id | 1 | |
| PRIMARY | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | valvetime_forums.user.user_id | 1 | Using where |
| PRIMARY | user_option | eq_ref | PRIMARY | PRIMARY | 4 | valvetime_forums.user.user_id | 1 | Using where |
| DEPENDENT SUBQUERY | dark_postrating_count | eq_ref | user_id_rating | user_id_rating | 8 | valvetime_forums.user.user_id,const | 1 | |
| DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | valvetime_forums.user.user_id | 1 | Using index condition |
| DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | valvetime_forums.user.user_id | 1 | Using index condition |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('page_nav', 'bdtagme_tag', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'EWRblock_RecentThreads', 'EWRblock_Twitter', 'EWRblock_FaceBook', 'EWRblock_OnlineUsers', 'EWRblock_BoardTotals', 'EWRblock_AdSidebar')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000337
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 160 | | 13 | Using where |
SELECT page_name FROM EWRcarta_pages WHERE page_slug = 'index'
Run Time: 0.000179
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRcarta_pages | const | page_slug | page_slug | 302 | const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('cts_thread_tools', 'forumwatch_thread_view', 'thread_view', 'nat_childlinks')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000358
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 160 | | 4 | Using where |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('home')Params: 1
Run Time: 0.000207
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_phrase_compiled | const | PRIMARY | PRIMARY | 231 | const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('EWRporta_Navtabs', 'steam_navtabs', 'EWRcarta_Navtabs', 'steam_login_bar_item', 'steam_navigation_visitor_tab_link', 'steam_account_wrapper_sidebar_settings', 'steam_message_user_info', 'steam_js', 'steamstats_js', 'steam_member_view_info', 'steam_message_content', 'steam_helper_criteria_privs', 'steam_member_card_info', 'steam_footer', 'steam_public_index', 'steam_public_owned', 'steam_public_played', 'steam_public_recent', 'wf_hook_moderator_bar', 'wf_revealer', 'forumwatch_navigation_tabs_forums', 'attachmentviewer_navigation_tabs_forums', 'attachmentviewer_navigation_visitor_tab', 'bdtagme_PAGE_CONTAINER', 'PAGE_CONTAINER', 'EWRporta_Custom_Top')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000447
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 160 | | 26 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('dark_postrating_message_user_info')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000284
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 160 | const,const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('dark_postrating')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000273
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 160 | const,const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('quick_reply_preview')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000276
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 160 | const,const,const | 1 | |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('preview')Params: 1
Run Time: 0.000232
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_phrase_compiled | const | PRIMARY | PRIMARY | 231 | const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('bbcm_js')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000259
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 160 | const,const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('MobileIcons_Links')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000374
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 160 | const,const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BrowserUpdate')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000265
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 160 | const,const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('social_connect_status_editor')
AND style_id = ?
AND language_id = ?Params: 9, 1
Run Time: 0.000341
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 160 | const,const,const | 1 | |