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.000259
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.000096
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_value
FROM xf_data_registry
WHERE data_key = ?
Params: brmsModernStatisticCache
Run Time: 0.000095
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.000137
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: 2531
Run Time: 0.000558
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: 10
Run Time: 0.000338
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.schedule_message_date = 0 OR post.user_id = 0)
AND (post.position >= 0 AND post.position < 20)
AND (post.message_state IN ('visible'))
ORDER BY post.position ASC, post.schedule_message_date ASC, post.post_date ASC
Params: 2531
Run Time: 0.001230
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | post | ref | thread_id_post_date,thread_id_position,user_id | thread_id_post_date | 4 | const | 1 | Using index condition; Using where; Using filesort |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.post.user_id | 1 | |
SIMPLE | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.post.user_id | 1 | |
SIMPLE | user_privacy | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.post.user_id | 1 | |
SIMPLE | session_activity | eq_ref | PRIMARY | PRIMARY | 22 | kakatavn_db.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 (3866)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000390
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 | 4 | Using index condition |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.attachment.data_id | 1 | |
INSERT DELAYED INTO xf_thread_view
(thread_id)
VALUES
(?)
Params: 2531
Run Time: 0.000089
SELECT xf_thread.*, xf_post.message, xf_post.attach_count, xf_node.title AS node_title
FROM xf_thread
LEFT JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
LEFT JOIN xf_node ON (xf_node.node_id = xf_thread.node_id)
WHERE xf_thread.node_id > 0 AND xf_thread.thread_id != 2531 AND xf_thread.post_date < 1679982771 AND xf_thread.discussion_state = 'visible'
ORDER BY xf_thread.thread_id DESC
LIMIT 2
Run Time: 0.000606
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_thread | range | PRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date | PRIMARY | 4 | | 2738 | Using where |
SIMPLE | xf_post | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.xf_thread.first_post_id | 1 | |
SIMPLE | xf_node | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.xf_thread.node_id | 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 (16396)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000166
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 |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.attachment.data_id | 1 | |
SELECT xf_thread.*, xf_post.message, xf_post.attach_count, xf_node.title AS node_title
FROM xf_thread
LEFT JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
LEFT JOIN xf_node ON (xf_node.node_id = xf_thread.node_id)
WHERE xf_thread.node_id > 0 AND xf_thread.node_id NOT IN (1,71,67) AND xf_thread.thread_id != 2531 AND xf_thread.post_date > 1679377971 AND xf_thread.post_date < 1679982771 AND xf_thread.discussion_state = 'visible'
ORDER BY xf_thread.view_count DESC
LIMIT 5
Run Time: 0.000634
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_thread | range | PRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date | post_date | 4 | | 30 | Using index condition; Using where; Using filesort |
SIMPLE | xf_post | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.xf_thread.first_post_id | 1 | |
SIMPLE | xf_node | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.xf_thread.node_id | 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 (16379)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000173
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 |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.attachment.data_id | 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 (16375)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000159
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 |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.attachment.data_id | 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 (16359)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000158
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 | 2 | Using index condition |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.attachment.data_id | 1 | |
SELECT *
FROM xf_node
ORDER BY lft ASC
Run Time: 0.000172
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_node | ALL | | | | | 61 | 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.000152
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_cache_content | ref | PRIMARY | PRIMARY | 31 | const,const | 61 | Using where |
SELECT params
FROM xf_session_activity
WHERE user_id = ?
AND controller_action = 'CreateThread'
Params: 0
Run Time: 0.000309
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_session_activity | ref | PRIMARY | PRIMARY | 4 | const | 234 | Using where |
SELECT xf_thread.thread_id,
xf_thread.node_id,
xf_thread.title,
xf_thread.reply_count,
xf_thread.view_count,
xf_thread.username,
xf_thread.post_date,
xf_thread.last_post_date,
xf_thread.last_post_user_id,
xf_thread.last_post_username,
xf_thread.prefix_id,
xf_node.title AS nodeTitle,
xf_user.user_id,
xf_user.gender,
xf_user.avatar_date
FROM xf_thread
INNER JOIN xf_node ON xf_node.node_id = xf_thread.node_id
INNER JOIN xf_user ON xf_user.user_id = xf_thread.user_id
WHERE xf_thread.title LIKE '%Cùng%'
AND xf_thread.title LIKE '%nghe%'
AND xf_thread.discussion_state = 'visible'
AND xf_thread.discussion_type <> 'redirect'
AND xf_thread.post_date >= ?
AND (xf_thread.node_id = 1 OR xf_thread.node_id = 3 OR xf_thread.node_id = 4 OR xf_thread.node_id = 5 OR xf_thread.node_id = 6 OR xf_thread.node_id = 10 OR xf_thread.node_id = 110 OR xf_thread.node_id = 12 OR xf_thread.node_id = 87 OR xf_thread.node_id = 13 OR xf_thread.node_id = 14 OR xf_thread.node_id = 77 OR xf_thread.node_id = 78 OR xf_thread.node_id = 79 OR xf_thread.node_id = 80 OR xf_thread.node_id = 81 OR xf_thread.node_id = 11 OR xf_thread.node_id = 107 OR xf_thread.node_id = 23 OR xf_thread.node_id = 82 OR xf_thread.node_id = 83 OR xf_thread.node_id = 22 OR xf_thread.node_id = 15 OR xf_thread.node_id = 17 OR xf_thread.node_id = 40 OR xf_thread.node_id = 41 OR xf_thread.node_id = 51 OR xf_thread.node_id = 102 OR xf_thread.node_id = 103 OR xf_thread.node_id = 104 OR xf_thread.node_id = 105 OR xf_thread.node_id = 67 OR xf_thread.node_id = 61 OR xf_thread.node_id = 62 OR xf_thread.node_id = 63 OR xf_thread.node_id = 84 OR xf_thread.node_id = 85 OR xf_thread.node_id = 86 OR xf_thread.node_id = 88 OR xf_thread.node_id = 89 OR xf_thread.node_id = 90 OR xf_thread.node_id = 95 OR xf_thread.node_id = 106 OR xf_thread.node_id = 72 OR xf_thread.node_id = 75 OR xf_thread.node_id = 91 OR xf_thread.node_id = 92 OR xf_thread.node_id = 94 OR xf_thread.node_id = 100 OR xf_thread.node_id = 101 OR xf_thread.node_id = 93 OR xf_thread.node_id = 96 OR xf_thread.node_id = 109 OR xf_thread.node_id = 108 OR xf_thread.node_id = 97 OR xf_thread.node_id = 98 OR xf_thread.node_id = 99 OR xf_thread.node_id = 71 OR xf_thread.node_id = 16 OR xf_thread.node_id = 18 OR xf_thread.node_id = 21)
AND xf_thread.thread_id <> '2531'
AND xf_thread.node_id = '10'
AND (xf_thread.node_id <> 0)
ORDER BY xf_thread.thread_id DESC
LIMIT ?
Params: 0, 5
Run Time: 0.006571
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | xf_thread | range | PRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date,user_id | PRIMARY | 4 | | 2738 | Using where |
SIMPLE | xf_user | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.xf_thread.user_id | 1 | |
SELECT xf_thread.thread_id,
xf_thread.node_id,
xf_thread.title,
xf_thread.reply_count,
xf_thread.view_count,
xf_thread.username,
xf_thread.post_date,
xf_thread.last_post_date,
xf_thread.last_post_user_id,
xf_thread.last_post_username,
xf_thread.prefix_id,
xf_node.title AS nodeTitle,
xf_user.user_id,
xf_user.gender,
xf_user.avatar_date
FROM xf_thread
INNER JOIN xf_node ON xf_node.node_id = xf_thread.node_id
INNER JOIN xf_user ON xf_user.user_id = xf_thread.user_id
WHERE xf_thread.title LIKE '%Cùng%'
AND xf_thread.discussion_state = 'visible'
AND xf_thread.discussion_type <> 'redirect'
AND xf_thread.post_date >= ?
AND (xf_thread.node_id = 1 OR xf_thread.node_id = 3 OR xf_thread.node_id = 4 OR xf_thread.node_id = 5 OR xf_thread.node_id = 6 OR xf_thread.node_id = 10 OR xf_thread.node_id = 110 OR xf_thread.node_id = 12 OR xf_thread.node_id = 87 OR xf_thread.node_id = 13 OR xf_thread.node_id = 14 OR xf_thread.node_id = 77 OR xf_thread.node_id = 78 OR xf_thread.node_id = 79 OR xf_thread.node_id = 80 OR xf_thread.node_id = 81 OR xf_thread.node_id = 11 OR xf_thread.node_id = 107 OR xf_thread.node_id = 23 OR xf_thread.node_id = 82 OR xf_thread.node_id = 83 OR xf_thread.node_id = 22 OR xf_thread.node_id = 15 OR xf_thread.node_id = 17 OR xf_thread.node_id = 40 OR xf_thread.node_id = 41 OR xf_thread.node_id = 51 OR xf_thread.node_id = 102 OR xf_thread.node_id = 103 OR xf_thread.node_id = 104 OR xf_thread.node_id = 105 OR xf_thread.node_id = 67 OR xf_thread.node_id = 61 OR xf_thread.node_id = 62 OR xf_thread.node_id = 63 OR xf_thread.node_id = 84 OR xf_thread.node_id = 85 OR xf_thread.node_id = 86 OR xf_thread.node_id = 88 OR xf_thread.node_id = 89 OR xf_thread.node_id = 90 OR xf_thread.node_id = 95 OR xf_thread.node_id = 106 OR xf_thread.node_id = 72 OR xf_thread.node_id = 75 OR xf_thread.node_id = 91 OR xf_thread.node_id = 92 OR xf_thread.node_id = 94 OR xf_thread.node_id = 100 OR xf_thread.node_id = 101 OR xf_thread.node_id = 93 OR xf_thread.node_id = 96 OR xf_thread.node_id = 109 OR xf_thread.node_id = 108 OR xf_thread.node_id = 97 OR xf_thread.node_id = 98 OR xf_thread.node_id = 99 OR xf_thread.node_id = 71 OR xf_thread.node_id = 16 OR xf_thread.node_id = 18 OR xf_thread.node_id = 21)
AND xf_thread.thread_id <> '2531'
AND xf_thread.node_id = '10'
AND (xf_thread.node_id <> 0)
AND xf_thread.thread_id <> 2193 AND xf_thread.thread_id <> 2072
ORDER BY xf_thread.thread_id DESC
LIMIT ?
Params: 0, 3
Run Time: 0.002796
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | xf_thread | range | PRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date,user_id | PRIMARY | 4 | | 3421 | Using where |
SIMPLE | xf_user | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.xf_thread.user_id | 1 | |
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: adbb9825bc68fc37daef796e60b4ee9c, , 1679986371
Run Time: 0.000212
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=2531, 1679982771,
Run Time: 0.000584
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', 'BRQCT_forum_list_nodes', 'BRQCT_ad_sidebar_top', 'BRQCT_button_top_ctrl', 'sedo_agent', 'wf_widget_wrapper', 'wf_widget_online_staff', 'wf_widget_threads', 'wf_widget_stats', 'wf_widget_online_users', 'BRMS_ModernStatistic', 'BRMS_modern_statistic_header', 'thread_view', 'xenCODE_Meta_Keywords', 'wf_hook_moderator_bar', 'wf_revealer', 'PAGE_CONTAINER')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.000305
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 23 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRQCT_button_top_ctrl', 'BRMS_thread_view_tools_links')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.000126
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 2 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRQCT_button_top_ctrl', 'VNXF_More_Thread')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.000121
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 2 | 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 > 1679981871)
ORDER BY session_activity.view_date DESC
Run Time: 0.000953
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | session_activity | range | view_date | view_date | 4 | | 16 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.session_activity.user_id | 1 | |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc__1_thread_view', 'wfc__1_thread_view_f10')
Run Time: 0.000263
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_ab125109817dce4fd9de5')
Run Time: 0.000168
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_ab125109817dce4fd9de5, a:2:{s:23:"thread_view_lock_f10_17";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1679982771;}s:23:"thread_view_lock_f10_16";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1679982451;}}
Run Time: 0.000694
SELECT *
FROM xf_node
ORDER BY lft ASC
Run Time: 0.000175
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_node | ALL | | | | | 61 | 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.000141
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_cache_content | ref | PRIMARY | PRIMARY | 31 | const,const | 61 | 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 ('37', '2', '3', '4', '5', '7', '8', '9', '10', '12', '13', '14', '15', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '34', '35', '38', '39', '42', '43', '44', '45', '46', '47', '48', '49', '50', '40', '41', '51', '54', '55', '56', '57', '58', '59', '60', '52', '53', '61', '62', '63', '72', '75', '16', '18', '21', '64', '65', '66', '19', '20', '68', '69', '70', '76', 6, 110, 87, 77, 78, 79, 80, 81)) AND (thread.discussion_state IN ('visible')) AND (thread.reply_count > 0)) AND (thread.schedule_thread_date = 0)
ORDER BY thread.last_post_date DESC
LIMIT 15
Run Time: 0.000266
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 | | 15 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.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 (14, 80, 13, 80, 10, 80, 22, 80, 10, 80, 78, 10, 80, 80, 80)
Run Time: 0.000513
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | forum | range | PRIMARY | PRIMARY | 4 | | 6 | Using where |
SIMPLE | node | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.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_f10, a:2:{s:18:"thread_view_f10_17";a:2:{s:4:"html";s:3712:"<div class="avatarList">
<ul>
<li class="thread-7388 thread-node-14">
<a href="members/greed.20953/" class="avatar Av20953s" data-avatarhtml="true"><img src="data/avatars/s/20/20953.jpg?1670589620" width="48" height="48" alt="greed" /></a>
<a title="PVT – VIÊN NGỌC SÁNG TRONG BỨC TRANH VẬN TẢI BIỂN" class="Tooltip"
href="posts/16394/">
PVT – VIÊN NGỌC SÁNG TRONG BỨC...
</a>
<div class="userTitle">
<a href="members/greed.20953/" class="username">greed</a> replied <abbr class="DateTime" data-time="1679902182" data-diff="80589" data-datestring="27/3/23" data-timestring="14:29">27/3/23 lúc 14:29</abbr>
</div>
</li>
<li class="thread-6173 thread-node-80">
<a href="members/luisnguyen09.19720/" class="avatar Av19720s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="luisnguyen09" /></a>
<a title="Code Amibroker _ Ichimoku Các setting khác nhau" class="Tooltip"
href="posts/16392/">
Code Amibroker _ Ichimoku Các...
</a>
<div class="userTitle">
<a href="members/luisnguyen09.19720/" class="username">luisnguyen09</a> replied <abbr class="DateTime" data-time="1679846243" data-diff="136528" data-datestring="26/3/23" data-timestring="22:57">26/3/23 lúc 22:57</abbr>
</div>
</li>
<li class="thread-7484 thread-node-13">
<a href="members/thuong-le.19370/" class="avatar Av19370s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Thuong Le" /></a>
<a title="NHẬN ĐỊNH THỊ TRƯỜNG TUẦN 27-31/3: TUẦN CHỐT NAV, VNI SẼ THOÁT NỀN XUỐNG VÙNG 1000 ĐIỂM???" class="Tooltip"
href="posts/16391/">
NHẬN ĐỊNH THỊ TRƯỜNG TUẦN...
</a>
<div class="userTitle">
<a href="members/thuong-le.19370/" class="username">Thuong Le</a> replied <abbr class="DateTime" data-time="1679827013" data-diff="155758" data-datestring="26/3/23" data-timestring="17:36">26/3/23 lúc 17:36</abbr>
</div>
</li>
<li class="thread-7479 thread-node-80">
<a href="members/nguyenjoe.8886/" class="avatar Av8886s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="nguyenjoe" /></a>
<a title="[Chia sẻ] Code tự động đánh dấu pivot đỉnh đáy như MarketSmith của IBD" class="Tooltip"
href="posts/16388/">
[Chia sẻ] Code tự động đánh dấu...
</a>
<div class="userTitle">
<a href="members/nguyenjoe.8886/" class="username">nguyenjoe</a> replied <abbr class="DateTime" data-time="1679792143" data-diff="190628" data-datestring="26/3/23" data-timestring="07:55">26/3/23 lúc 07:55</abbr>
</div>
</li>
<li class="thread-6563 thread-node-10">
<a href="members/nguyen-duc-phu.20598/" class="avatar Av20598s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Nguyen duc phu" /></a>
<a
href="posts/16387/">
Xin code Flower afl ạ
</a>
<div class="userTitle">
<a href="members/nguyen-duc-phu.20598/" class="username">Nguyen duc phu</a> replied <abbr class="DateTime" data-time="1679786125" data-diff="196646" data-datestring="26/3/23" data-timestring="06:15">26/3/23 lúc 06:15</abbr>
</div>
</li>
</ul>
</div>
<div id="PreviewTooltip">
<span class="arrow"><span></span></span>
<div class="section">
<div class="primaryContent previewContent">
<span class="PreviewContents">Đang tải...</span>
</div>
</div>
</div>";s:4:"time";i:1679982771;}s:18:"thread_view_f10_16";a:2:{s:4:"html";s:4114:"<div class="avatarList">
<ul>
<li class="thread-7479 thread-node-80">
<a href="members/nguyenjoe.8886/" class="avatar Av8886s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="nguyenjoe" /></a>
<a title="[Chia sẻ] Code tự động đánh dấu pivot đỉnh đáy như MarketSmith của IBD" class="Tooltip"
href="chia-se-code-tu-dong-danh-dau-pivot-dinh-day-nhu-marketsmith-cua-ibd.t7479.html">
[Chia sẻ] Code tự động đánh dấu...
</a>
<div class="userTitle">
<a href="members/nguyenjoe.8886/" class="username">nguyenjoe</a> posted <abbr class="DateTime" data-time="1679705477" data-diff="276974" data-datestring="25/3/23" data-timestring="07:51">25/3/23 lúc 07:51</abbr>
</div>
</li>
<li class="thread-7476 thread-node-10">
<a href="members/speculator-team.21705/" class="avatar Av21705s" data-avatarhtml="true"><img src="data/avatars/s/21/21705.jpg?1677059984" width="48" height="48" alt="Speculator_Team" /></a>
<a
href="bat-day-trot-lot-t.t7476.html">
Bắt Đáy Trót Lọt T+
</a>
<div class="userTitle">
<a href="members/speculator-team.21705/" class="username">Speculator_Team</a> posted <abbr class="DateTime" data-time="1679629002" data-diff="353449" data-datestring="24/3/23" data-timestring="10:36">24/3/23 lúc 10:36</abbr>
</div>
</li>
<li class="thread-7482 thread-node-10">
<a href="members/nguyen-duc-phu.20598/" class="avatar Av20598s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Nguyen duc phu" /></a>
<a title="Nhờ viết giùm code 2 đường ma cắt nhau có mũi tên lên xuống với ạ" class="Tooltip"
href="nho-viet-gium-code-2-duong-ma-cat-nhau-co-mui-ten-len-xuong-voi-a.t7482.html">
Nhờ viết giùm code 2 đường ma...
</a>
<div class="userTitle">
<a href="members/nguyen-duc-phu.20598/" class="username">Nguyen duc phu</a> posted <abbr class="DateTime" data-time="1679747682" data-diff="234769" data-datestring="25/3/23" data-timestring="19:34">25/3/23 lúc 19:34</abbr>
</div>
</li>
<li class="thread-7473 thread-node-80">
<a href="members/ivannop.20320/" class="avatar Av20320s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="ivannop" /></a>
<a title="Chỗ bán dữ liệu cập nhật thị trường chứng khoán việt nam cho MT4" class="Tooltip"
href="cho-ban-du-lieu-cap-nhat-thi-truong-chung-khoan-viet-nam-cho-mt4.t7473.html">
Chỗ bán dữ liệu cập nhật thị...
</a>
<div class="userTitle">
<a href="members/ivannop.20320/" class="username">ivannop</a> posted <abbr class="DateTime" data-time="1679572286" data-diff="410165" data-datestring="23/3/23" data-timestring="18:51">23/3/23 lúc 18:51</abbr>
</div>
</li>
<li class="thread-7474 thread-node-13">
<a href="members/phong-khuong-tvi.20220/" class="avatar Av20220s" data-avatarhtml="true"><img src="data/avatars/s/20/20220.jpg?1663734443" width="48" height="48" alt="Phong Khương TVI" /></a>
<a title="NHẬN ĐỊNH THỊ TRƯỜNG NGÀY 24/3: SIDEWAY TẠO NỀN MỚI QUANH KHÁNG CỰ, VNI SẼ ĐI VỀ ĐÂU??" class="Tooltip"
href="nhan-dinh-thi-truong-ngay-24-3-sideway-tao-nen-moi-quanh-khang-cu-vni-se-di-ve-dau.t7474.html">
NHẬN ĐỊNH THỊ TRƯỜNG NGÀY 24/3:...
</a>
<div class="userTitle">
<a href="members/phong-khuong-tvi.20220/" class="username">Phong Khương TVI</a> posted <abbr class="DateTime" data-time="1679580216" data-diff="402235" data-datestring="23/3/23" data-timestring="21:03">23/3/23 lúc 21:03</abbr>
</div>
</li>
</ul>
</div>
<div id="PreviewTooltip">
<span class="arrow"><span></span></span>
<div class="section">
<div class="primaryContent previewContent">
<span class="PreviewContents">Đang tải...</span>
</div>
</div>
</div>";s:4:"time";i:1679982451;}}
Run Time: 0.001448
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc_ab125109817dce4fd9de5, a:2:{s:23:"thread_view_lock_f10_17";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1679982771;}s:23:"thread_view_lock_f10_16";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1679982451;}}
Run Time: 0.000584
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc_ab125109817dce4fd9de5, a:2:{s:23:"thread_view_lock_f10_17";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1679982771;}s:23:"thread_view_lock_f10_16";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1679982771;}}
Run Time: 0.001296
SELECT thread.*
,
user.gender, user.avatar_date, user.gravatar
FROM xf_thread AS thread
LEFT JOIN xf_user AS user ON
(user.user_id = thread.user_id)
WHERE (((thread.node_id IN ('37', '2', '3', '4', '5', '7', '8', '9', '10', '12', '13', '14', '15', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '34', '35', '38', '39', '42', '43', '44', '45', '46', '47', '48', '49', '50', '40', '41', '51', '54', '55', '56', '57', '58', '59', '60', '52', '53', '61', '62', '63', '72', '75', '16', '18', '21', '64', '65', '66', '19', '20', '68', '69', '70', '76', 6, 110, 87, 77, 78, 79, 80, 81)) AND (thread.discussion_state IN ('visible'))) AND (thread.post_date > 1679550771)) AND (thread.schedule_thread_date = 0)
ORDER BY thread.view_count DESC
LIMIT 15
Run Time: 0.001561
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | thread | range | node_id_last_post_date,node_id_sticky_state_last_post,post_date | post_date | 4 | | 19 | Using index condition; Using where; Using filesort |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.thread.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 (80, 10, 10, 80, 13, 80, 10, 10, 10, 13, 10, 13, 18)
Run Time: 0.000286
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | forum | range | PRIMARY | PRIMARY | 4 | | 4 | Using where |
SIMPLE | node | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.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_f10, a:2:{s:18:"thread_view_f10_17";a:2:{s:4:"html";s:3712:"<div class="avatarList">
<ul>
<li class="thread-7388 thread-node-14">
<a href="members/greed.20953/" class="avatar Av20953s" data-avatarhtml="true"><img src="data/avatars/s/20/20953.jpg?1670589620" width="48" height="48" alt="greed" /></a>
<a title="PVT – VIÊN NGỌC SÁNG TRONG BỨC TRANH VẬN TẢI BIỂN" class="Tooltip"
href="posts/16394/">
PVT – VIÊN NGỌC SÁNG TRONG BỨC...
</a>
<div class="userTitle">
<a href="members/greed.20953/" class="username">greed</a> replied <abbr class="DateTime" data-time="1679902182" data-diff="80589" data-datestring="27/3/23" data-timestring="14:29">27/3/23 lúc 14:29</abbr>
</div>
</li>
<li class="thread-6173 thread-node-80">
<a href="members/luisnguyen09.19720/" class="avatar Av19720s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="luisnguyen09" /></a>
<a title="Code Amibroker _ Ichimoku Các setting khác nhau" class="Tooltip"
href="posts/16392/">
Code Amibroker _ Ichimoku Các...
</a>
<div class="userTitle">
<a href="members/luisnguyen09.19720/" class="username">luisnguyen09</a> replied <abbr class="DateTime" data-time="1679846243" data-diff="136528" data-datestring="26/3/23" data-timestring="22:57">26/3/23 lúc 22:57</abbr>
</div>
</li>
<li class="thread-7484 thread-node-13">
<a href="members/thuong-le.19370/" class="avatar Av19370s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Thuong Le" /></a>
<a title="NHẬN ĐỊNH THỊ TRƯỜNG TUẦN 27-31/3: TUẦN CHỐT NAV, VNI SẼ THOÁT NỀN XUỐNG VÙNG 1000 ĐIỂM???" class="Tooltip"
href="posts/16391/">
NHẬN ĐỊNH THỊ TRƯỜNG TUẦN...
</a>
<div class="userTitle">
<a href="members/thuong-le.19370/" class="username">Thuong Le</a> replied <abbr class="DateTime" data-time="1679827013" data-diff="155758" data-datestring="26/3/23" data-timestring="17:36">26/3/23 lúc 17:36</abbr>
</div>
</li>
<li class="thread-7479 thread-node-80">
<a href="members/nguyenjoe.8886/" class="avatar Av8886s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="nguyenjoe" /></a>
<a title="[Chia sẻ] Code tự động đánh dấu pivot đỉnh đáy như MarketSmith của IBD" class="Tooltip"
href="posts/16388/">
[Chia sẻ] Code tự động đánh dấu...
</a>
<div class="userTitle">
<a href="members/nguyenjoe.8886/" class="username">nguyenjoe</a> replied <abbr class="DateTime" data-time="1679792143" data-diff="190628" data-datestring="26/3/23" data-timestring="07:55">26/3/23 lúc 07:55</abbr>
</div>
</li>
<li class="thread-6563 thread-node-10">
<a href="members/nguyen-duc-phu.20598/" class="avatar Av20598s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Nguyen duc phu" /></a>
<a
href="posts/16387/">
Xin code Flower afl ạ
</a>
<div class="userTitle">
<a href="members/nguyen-duc-phu.20598/" class="username">Nguyen duc phu</a> replied <abbr class="DateTime" data-time="1679786125" data-diff="196646" data-datestring="26/3/23" data-timestring="06:15">26/3/23 lúc 06:15</abbr>
</div>
</li>
</ul>
</div>
<div id="PreviewTooltip">
<span class="arrow"><span></span></span>
<div class="section">
<div class="primaryContent previewContent">
<span class="PreviewContents">Đang tải...</span>
</div>
</div>
</div>";s:4:"time";i:1679982771;}s:18:"thread_view_f10_16";a:2:{s:4:"html";s:4114:"<div class="avatarList">
<ul>
<li class="thread-7479 thread-node-80">
<a href="members/nguyenjoe.8886/" class="avatar Av8886s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="nguyenjoe" /></a>
<a title="[Chia sẻ] Code tự động đánh dấu pivot đỉnh đáy như MarketSmith của IBD" class="Tooltip"
href="chia-se-code-tu-dong-danh-dau-pivot-dinh-day-nhu-marketsmith-cua-ibd.t7479.html">
[Chia sẻ] Code tự động đánh dấu...
</a>
<div class="userTitle">
<a href="members/nguyenjoe.8886/" class="username">nguyenjoe</a> posted <abbr class="DateTime" data-time="1679705477" data-diff="277294" data-datestring="25/3/23" data-timestring="07:51">25/3/23 lúc 07:51</abbr>
</div>
</li>
<li class="thread-7476 thread-node-10">
<a href="members/speculator-team.21705/" class="avatar Av21705s" data-avatarhtml="true"><img src="data/avatars/s/21/21705.jpg?1677059984" width="48" height="48" alt="Speculator_Team" /></a>
<a
href="bat-day-trot-lot-t.t7476.html">
Bắt Đáy Trót Lọt T+
</a>
<div class="userTitle">
<a href="members/speculator-team.21705/" class="username">Speculator_Team</a> posted <abbr class="DateTime" data-time="1679629002" data-diff="353769" data-datestring="24/3/23" data-timestring="10:36">24/3/23 lúc 10:36</abbr>
</div>
</li>
<li class="thread-7482 thread-node-10">
<a href="members/nguyen-duc-phu.20598/" class="avatar Av20598s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Nguyen duc phu" /></a>
<a title="Nhờ viết giùm code 2 đường ma cắt nhau có mũi tên lên xuống với ạ" class="Tooltip"
href="nho-viet-gium-code-2-duong-ma-cat-nhau-co-mui-ten-len-xuong-voi-a.t7482.html">
Nhờ viết giùm code 2 đường ma...
</a>
<div class="userTitle">
<a href="members/nguyen-duc-phu.20598/" class="username">Nguyen duc phu</a> posted <abbr class="DateTime" data-time="1679747682" data-diff="235089" data-datestring="25/3/23" data-timestring="19:34">25/3/23 lúc 19:34</abbr>
</div>
</li>
<li class="thread-7473 thread-node-80">
<a href="members/ivannop.20320/" class="avatar Av20320s" data-avatarhtml="true"><img src="styles/otovungtau/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="ivannop" /></a>
<a title="Chỗ bán dữ liệu cập nhật thị trường chứng khoán việt nam cho MT4" class="Tooltip"
href="cho-ban-du-lieu-cap-nhat-thi-truong-chung-khoan-viet-nam-cho-mt4.t7473.html">
Chỗ bán dữ liệu cập nhật thị...
</a>
<div class="userTitle">
<a href="members/ivannop.20320/" class="username">ivannop</a> posted <abbr class="DateTime" data-time="1679572286" data-diff="410485" data-datestring="23/3/23" data-timestring="18:51">23/3/23 lúc 18:51</abbr>
</div>
</li>
<li class="thread-7474 thread-node-13">
<a href="members/phong-khuong-tvi.20220/" class="avatar Av20220s" data-avatarhtml="true"><img src="data/avatars/s/20/20220.jpg?1663734443" width="48" height="48" alt="Phong Khương TVI" /></a>
<a title="NHẬN ĐỊNH THỊ TRƯỜNG NGÀY 24/3: SIDEWAY TẠO NỀN MỚI QUANH KHÁNG CỰ, VNI SẼ ĐI VỀ ĐÂU??" class="Tooltip"
href="nhan-dinh-thi-truong-ngay-24-3-sideway-tao-nen-moi-quanh-khang-cu-vni-se-di-ve-dau.t7474.html">
NHẬN ĐỊNH THỊ TRƯỜNG NGÀY 24/3:...
</a>
<div class="userTitle">
<a href="members/phong-khuong-tvi.20220/" class="username">Phong Khương TVI</a> posted <abbr class="DateTime" data-time="1679580216" data-diff="402555" data-datestring="23/3/23" data-timestring="21:03">23/3/23 lúc 21:03</abbr>
</div>
</li>
</ul>
</div>
<div id="PreviewTooltip">
<span class="arrow"><span></span></span>
<div class="section">
<div class="primaryContent previewContent">
<span class="PreviewContents">Đang tải...</span>
</div>
</div>
</div>";s:4:"time";i:1679982771;}}
Run Time: 0.000941
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc_ab125109817dce4fd9de5, a:2:{s:23:"thread_view_lock_f10_17";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1679982771;}s:23:"thread_view_lock_f10_16";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1679982771;}}
Run Time: 0.000577
SELECT data_value
FROM xf_data_registry
WHERE data_key = ?
Params: boardTotals
Run Time: 0.000213
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 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 > 1679981871)
ORDER BY session_activity.view_date DESC
Run Time: 0.000365
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | session_activity | range | view_date | view_date | 4 | | 16 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | kakatavn_db.session_activity.user_id | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRQCT_button_top_ctrl', 'BRQCT_navigation_tabs_forums')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.000127
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 2 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRQCT_button_top_ctrl', 'nat_bodyjs')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.000101
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 2 | Using where |