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.259056
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 27 | | 26 | Using where |
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.023428
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_reply_banned,
0 AS thread_is_watched,
'' AS draft_message, NULL AS draft_extra
FROM xf_thread AS thread
LEFT JOIN xf_user AS user ON
(user.user_id = thread.user_id)
WHERE thread.thread_id = ?
Params: 416214
Run Time: 0.023692
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: 8
Run Time: 0.023544
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 | 35 | const,const,const | 1 | |
SELECT post.*
,
user.*, IF(user.username IS NULL, post.username, user.username) AS username,
user_profile.*,
user_privacy.*,
session_activity.view_date AS last_view_date,
0 AS like_date
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 xf_user_privacy AS user_privacy ON
(user_privacy.user_id = post.user_id)
LEFT JOIN xf_session_activity AS session_activity ON
(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
WHERE post.thread_id = ?
AND (post.position >= 0 AND post.position < 20)
AND (post.message_state IN ('visible'))
ORDER BY post.position ASC, post.post_date ASC
Params: 416214
Run Time: 0.032129
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | post | range | thread_id_post_date,thread_id_position | thread_id_position | 8 | | 21 | Using index condition; Using where; Using filesort |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | taxiderm_xf.post.user_id | 1 | |
SIMPLE | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | taxiderm_xf.post.user_id | 1 | |
SIMPLE | user_privacy | eq_ref | PRIMARY | PRIMARY | 4 | taxiderm_xf.post.user_id | 1 | |
SIMPLE | session_activity | eq_ref | PRIMARY | PRIMARY | 22 | taxiderm_xf.post.user_id,func | 1 | Using where |
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 (2808892)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.026098
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | attachment | ref | content_type_id_date | content_type_id_date | 31 | const,const | 1 | Using index condition; Using where |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | taxiderm_xf.attachment.data_id | 1 | |
INSERT INTO xf_thread_view
(thread_id)
VALUES
(?)
Params: 416214
Run Time: 0.026586
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: c626efa5b507cd7e13609504a540d112, , 1610809732
Run Time: 0.026841
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_Thread, Index, valid, thread_id=416214, 1610806132,
Run Time: 0.029755
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('page_nav', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'xengallery_bb_code_tag_gallery', 'wf_widget_wrapper', 'wf_widget_threads', 'thread_view', 'nat_childlinks')
AND style_id = ?
AND language_id = ?
Params: 4, 1
Run Time: 0.071244
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 12 | Using where |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc__1_thread_view')
Run Time: 0.023339
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc__1_thread_view_lock')
Run Time: 0.023371
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_thread_view_lock, a:1:{s:19:"thread_view_lock_26";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1610806132;}}
Run Time: 0.026866
SELECT *
FROM xf_node
ORDER BY lft ASC
Run Time: 0.023693
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_node | ALL | | | | | 49 | Using filesort |
SELECT content_id, cache_value
FROM xf_permission_cache_content
WHERE permission_combination_id = ?
AND content_type = 'node'
Params: 1
Run Time: 0.024123
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_cache_content | ref | PRIMARY | PRIMARY | 31 | const,const | 48 | Using where |
SELECT thread.*
,
1 AS fetched_last_post_user, user.gender, user.avatar_date, user.gravatar
FROM xf_thread AS thread
LEFT JOIN xf_user AS user ON
(user.user_id = thread.last_post_user_id)
WHERE (thread.node_id IN (34, 4, 5, 29, 32, 2, 6, 27, 33, 3, 20, 7, 23, 8, 21, 9, 19, 10, 22, 11, 17, 12, 13, 26, 31, 36, 16, 37, 14, 15, 28, 30, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47)) AND (thread.discussion_state IN ('visible')) AND (thread.reply_count > 0)
ORDER BY thread.last_post_date DESC
LIMIT 27
Run Time: 0.024062
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 | last_post_date | 4 | | 33 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | taxiderm_xf.thread.last_post_user_id | 1 | |
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 (4, 5, 4, 8, 11, 3, 5, 29, 4, 17, 5, 5, 7, 5, 5, 7, 5, 4, 17, 14, 2, 3, 9, 5, 3, 2, 5)
Run Time: 0.023836
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | forum | ALL | PRIMARY | | | | 31 | Using where |
SIMPLE | node | eq_ref | PRIMARY | PRIMARY | 4 | taxiderm_xf.forum.node_id | 1 | |
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc__1_thread_view, a:1:{s:14:"thread_view_26";a:2:{s:4:"html";s:5642:"<div class="avatarList">
<ul>
<li class="thread-436299 thread-node-4">
<a href="members/15368/" class="avatar Av15368s" data-avatarhtml="true"><img src="styles/taxidermy/xenforo/avatars/avatar_s.png" width="48" height="48" alt="SodakBob" /></a>
<a
href="posts/2835615/">
Pheasant Tails Wanted
</a>
<div class="userTitle">
<a href="members/15368/" class="username">SodakBob</a> replied <abbr class="DateTime" data-time="1610804618" data-diff="1514" data-datestring="Jan 16, 2021" data-timestring="8:43 AM">Jan 16, 2021 at 8:43 AM</abbr>
</div>
</li>
<li class="thread-431628 thread-node-5">
<a href="members/17978/" class="avatar Av17978s" data-avatarhtml="true"><img src="data/avatars/s/17/17978.jpg?1549316165" width="48" height="48" alt="Ed Buck Taxidermy" /></a>
<a title="Alaskan Life-size All Dry. Tanned Black And Grey Wolves Xl Lynx Cross Fox Black Bear" class="Tooltip"
href="posts/2835614/">
Alaskan Life-size All Dry....
</a>
<div class="userTitle">
<a href="members/17978/" class="username">Ed Buck Taxidermy</a> replied <abbr class="DateTime" data-time="1610804159" data-diff="1973" data-datestring="Jan 16, 2021" data-timestring="8:35 AM">Jan 16, 2021 at 8:35 AM</abbr>
</div>
</li>
<li class="thread-436365 thread-node-4">
<a href="members/60885/" class="avatar Av60885s" data-avatarhtml="true"><img src="styles/taxidermy/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Kenneth Minnich" /></a>
<a
href="posts/2835613/">
Red Squirrels
</a>
<div class="userTitle">
<a href="members/60885/" class="username">Kenneth Minnich</a> replied <abbr class="DateTime" data-time="1610803727" data-diff="2405" data-datestring="Jan 16, 2021" data-timestring="8:28 AM">Jan 16, 2021 at 8:28 AM</abbr>
</div>
</li>
<li class="thread-436143 thread-node-8">
<a href="members/26031/" class="avatar Av26031s" data-avatarhtml="true"><img src="data/avatars/s/26/26031.jpg?1516629096" width="48" height="48" alt="pir^2h" /></a>
<a
href="posts/2835612/">
What's On Your Workbench 2021
</a>
<div class="userTitle">
<a href="members/26031/" class="username">pir^2h</a> replied <abbr class="DateTime" data-time="1610803510" data-diff="2622" data-datestring="Jan 16, 2021" data-timestring="8:25 AM">Jan 16, 2021 at 8:25 AM</abbr>
</div>
</li>
<li class="thread-436417 thread-node-11">
<a href="members/399/" class="avatar Av399s" data-avatarhtml="true"><img src="data/avatars/s/0/399.jpg?1516628664" width="48" height="48" alt="joeym" /></a>
<a
href="posts/2835608/">
Need Tannery
</a>
<div class="userTitle">
<a href="members/399/" class="username">joeym</a> replied <abbr class="DateTime" data-time="1610797960" data-diff="8172" data-datestring="Jan 16, 2021" data-timestring="6:52 AM">Jan 16, 2021 at 6:52 AM</abbr>
</div>
</li>
<li class="thread-436404 thread-node-3">
<a href="members/399/" class="avatar Av399s" data-avatarhtml="true"><img src="data/avatars/s/0/399.jpg?1516628664" width="48" height="48" alt="joeym" /></a>
<a title="Forms To Be Used With Bondo Earliners" class="Tooltip"
href="posts/2835607/">
Forms To Be Used With Bondo...
</a>
<div class="userTitle">
<a href="members/399/" class="username">joeym</a> replied <abbr class="DateTime" data-time="1610797712" data-diff="8420" data-datestring="Jan 16, 2021" data-timestring="6:48 AM">Jan 16, 2021 at 6:48 AM</abbr>
</div>
</li>
<li class="thread-436378 thread-node-5">
<a href="members/722/" class="avatar Av722s" data-avatarhtml="true"><img src="styles/taxidermy/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="pat" /></a>
<a title="Eastern Coyote Cape, And Alligator Skull" class="Tooltip"
href="posts/2835603/">
Eastern Coyote Cape, And...
</a>
<div class="userTitle">
<a href="members/722/" class="username">pat</a> replied <abbr class="DateTime" data-time="1610782593" data-diff="23539" data-datestring="Jan 16, 2021" data-timestring="2:36 AM">Jan 16, 2021 at 2:36 AM</abbr>
</div>
</li>
<li class="thread-436373 thread-node-29">
<a href="members/350/" class="avatar Av350s" data-avatarhtml="true"><img src="data/avatars/s/0/350.jpg?1516628660" width="48" height="48" alt="BowDeadly" /></a>
<a
href="posts/2835589/">
Another Mistake
</a>
<div class="userTitle">
<a href="members/350/" class="username">BowDeadly</a> replied <abbr class="DateTime" data-time="1610769869" data-diff="36263" data-datestring="Jan 15, 2021" data-timestring="11:04 PM">Jan 15, 2021 at 11:04 PM</abbr>
</div>
</li>
<li class="thread-435415 thread-node-4">
<a href="members/40385/" class="avatar Av40385s" data-avatarhtml="true"><img src="styles/taxidermy/xenforo/avatars/avatar_s.png" width="48" height="48" alt="bowfishing101" /></a>
<a
href="posts/2835588/">
Elk Capes
</a>
<div class="userTitle">
<a href="members/40385/" class="username">bowfishing101</a> replied <abbr class="DateTime" data-time="1610768961" data-diff="37171" data-datestring="Jan 15, 2021" data-timestring="10:49 PM">Jan 15, 2021 at 10:49 PM</abbr>
</div>
</li>
</ul>
</div>
<div id="PreviewTooltip">
<span class="arrow"><span></span></span>
<div class="section">
<div class="primaryContent previewContent">
<span class="PreviewContents">Loading...</span>
</div>
</div>
</div>";s:4:"time";i:1610806132;}}
Run Time: 0.026441
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc__1_thread_view_lock, a:1:{s:19:"thread_view_lock_26";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1610806132;}}
Run Time: 0.026950
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('wf_widget_threads_type_latest_replies')
Params: 1
Run Time: 0.023267
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | const | PRIMARY | PRIMARY | 106 | const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('cta_featuredthreads_navigation_tab_links', 'xengallery_tab_links', 'nat_linkstemplate', 'wf_hook_moderator_bar', 'wf_revealer', 'xengallery_comments_block', 'xengallery_media_block_items', 'PAGE_CONTAINER')
AND style_id = ?
AND language_id = ?
Params: 4, 1
Run Time: 0.165973
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 8 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('nat_bodyjs')
AND style_id = ?
AND language_id = ?
Params: 4, 1
Run Time: 0.023307
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 60 | const,const,const | 1 | |