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.000407
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | ALL | PRIMARY | | | | 36 | Using where |
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.000126
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: 489113
Run Time: 0.000186
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: 59
Run Time: 0.000218
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.*
,
bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
user.*, IF(user.username IS NULL, post.username, user.username) AS username,
user_profile.*,
user_privacy.*,
signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
session_activity.view_date AS last_view_date,
0 AS like_date
FROM xf_post AS post
LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
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_bb_code_parse_cache AS signature_parse_cache ON
(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_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 >= 100 AND post.position < 120)
AND (post.message_state IN ('visible'))
ORDER BY post.position ASC, post.post_date ASC
Params: 489113
Run Time: 0.002452
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 | bb_code_parse_cache | eq_ref | content_type_id | content_type_id | 31 | const,cowboyszone.post.post_id | 1 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | cowboyszone.post.user_id | 1 | |
SIMPLE | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | cowboyszone.post.user_id | 1 | |
SIMPLE | user_privacy | eq_ref | PRIMARY | PRIMARY | 4 | cowboyszone.post.user_id | 1 | |
SIMPLE | signature_parse_cache | eq_ref | content_type_id | content_type_id | 31 | const,cowboyszone.post.user_id | 1 | Using where |
SIMPLE | session_activity | eq_ref | PRIMARY | PRIMARY | 22 | cowboyszone.post.user_id,func | 1 | Using where |
INSERT DELAYED INTO xf_thread_view
(thread_id)
VALUES
(?)
Params: 489113
Run Time: 0.000135
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: 844161d7af203e4bf008223e42f1859c, , 1656893810
Run Time: 0.000178
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=489113&page=6, 1656890210,
Run Time: 0.000082
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', 'thread_view', 'dark_taigachat', 'dark_taigachat_list', 'siropu_custom_tabs_child_list', 'PAGE_CONTAINER')
AND style_id = ?
AND language_id = ?
Params: 1, 1
Run Time: 0.000335
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 12 | Using where |
INSERT INTO xf_bb_code_parse_cache
(content_type, content_id, parse_tree, cache_version, cache_date)
VALUES (?, ?, ?, ?, ?)
ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
cache_version = VALUES(cache_version),
cache_date = VALUES(cache_date)
Params: post, 11471887, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:49:"CowboysFaninHouston, post: 11471816, member: 6090";s:8:"original";a:2:{i:0;s:59:"[QUOTE="CowboysFaninHouston, post: 11471816, member: 6090"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:176:"your intent obviously was to say that Herbert is a lot better than Dak, but results, facts, stats don't support that...
why kiss Herbert's arse? are you a closet Chargers fan?";}}i:1;s:483:"
That was not my intent at all.
You used team records after 11 games as comparison of the two QB's. My intent was to point out that Dak has had the same or worse records after 11 games the majority of his career. The facts support that.
I'm not kissing anyone's ass. Acknowledging the accomplishments of a young and up and coming QB is not kissing his ass.
I'm a Cowboys fan and an NFL fan. I would love to see great QB's on every team in the league.
Why do you make it personal?";}, 1616548147, 1656890210
Run Time: 0.000864
INSERT INTO xf_bb_code_parse_cache
(content_type, content_id, parse_tree, cache_version, cache_date)
VALUES (?, ?, ?, ?, ?)
ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
cache_version = VALUES(cache_version),
cache_date = VALUES(cache_date)
Params: post, 11471902, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:35:"Vtwin, post: 11471887, member: 7204";s:8:"original";a:2:{i:0;s:45:"[QUOTE="Vtwin, post: 11471887, member: 7204"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:481:"That was not my intent at all.
You used team records after 11 games as comparison of the two QB's. My intent was to point out that Dak has had the same or worse records after 11 games the majority of his career. The facts support that.
I'm not kissing anyone's ***. Acknowledging the accomplishments of a young and up and coming QB is not kissing his ***.
I'm a Cowboys fan and an NFL fan. I would love to see great QB's on every team in the league.
Why do you make it personal?";}}i:1;s:195:"
I used that because Pippy said 10x and he often just refers to cowboys record as an indicator of success/failure....I used his standards of measure to compare....you have to understand pippy....";}, 1616548147, 1656890210
Run Time: 0.000514
INSERT INTO xf_bb_code_parse_cache
(content_type, content_id, parse_tree, cache_version, cache_date)
VALUES (?, ?, ?, ?, ?)
ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
cache_version = VALUES(cache_version),
cache_date = VALUES(cache_date)
Params: post, 11471977, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:40:"Risen Star, post: 11469475, member: 5331";s:8:"original";a:2:{i:0;s:50:"[QUOTE="Risen Star, post: 11469475, member: 5331"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:3:{i:0;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:387:"It’s frustrating on my part,” Prescott said. “I think just being greedy in some of the reads, trying to put the dagger in them, I guess you could say, rather than just continuing to play through the play and play through the drive. I was trying to do it on one play. I can’t do that. We can’t do that as an offense. We just got to stay within it and allow that play to come.”";}}i:1;s:2:"
";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:84:"https://www.si.com/nfl/cowboys/news/dallas-offense-problem-dak-prescott-greedy-final";}}}}i:1;s:156:"
Here's the deal...
I've seen Rodgers and TB dink and dunk teams to death. I've seen them throw all over the field as well. Why can't Dak figure this out?";}, 1616548147, 1656890210
Run Time: 0.000305
INSERT INTO xf_bb_code_parse_cache
(content_type, content_id, parse_tree, cache_version, cache_date)
VALUES (?, ?, ?, ?, ?)
ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
cache_version = VALUES(cache_version),
cache_date = VALUES(cache_date)
Params: post, 11472014, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:36:"CATCH17, post: 11469501, member: 109";s:8:"original";a:2:{i:0;s:46:"[QUOTE="CATCH17, post: 11469501, member: 109"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:33:"The diary of a system Quarterback";}}i:1;s:57:"
Name a QB that does not play within a system.
I'll wait";}, 1616548147, 1656890210
Run Time: 0.000543