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.001356
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 52 | | 26 | Using where |
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.000147
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: 777
Run Time: 0.000357
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: 132
Run Time: 0.000639
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 data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('dbtech_shop_category', 'dbtech_shop_currency', 'dbtech_shop_item', 'dbtech_shop_itemtype', 'dbtech_shop_lottery', 'dbtech_shop_lotteryprize', 'dbtech_shop_shop')
Run Time: 0.000543
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 52 | | 7 | Using where |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('dbtech_credits_currency', 'dbtech_credits_event', 'dbtech_credits_eventtrigger', 'dbtech_credits_field')
Run Time: 0.000196
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 52 | | 4 | Using where |
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, bank2.points AS shop_2_bank, shop_pointstable_2.dbtech_credits_credits AS shop_2, bank3.points AS shop_3_bank, shop_pointstable_3.card_voucher AS shop_3, bank4.points AS shop_4_bank, shop_pointstable_4.dm_voucher AS shop_4, bank5.points AS shop_5_bank, shop_pointstable_5.quest AS shop_5, credits_pointstable_1.dbtech_credits_credits AS credits_1, credits_pointstable_2.card_voucher AS credits_2, credits_pointstable_3.dm_voucher AS credits_3, credits_pointstable_4.quest AS credits_4
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))
LEFT JOIN xf_dbtech_shop_bank AS bank2 ON
(bank2.userid = post.user_id AND bank2.currencyid = 2)
LEFT JOIN xf_user AS shop_pointstable_2 ON
(shop_pointstable_2.user_id = post.user_id)
LEFT JOIN xf_dbtech_shop_bank AS bank3 ON
(bank3.userid = post.user_id AND bank3.currencyid = 3)
LEFT JOIN xf_user AS shop_pointstable_3 ON
(shop_pointstable_3.user_id = post.user_id)
LEFT JOIN xf_dbtech_shop_bank AS bank4 ON
(bank4.userid = post.user_id AND bank4.currencyid = 4)
LEFT JOIN xf_user AS shop_pointstable_4 ON
(shop_pointstable_4.user_id = post.user_id)
LEFT JOIN xf_dbtech_shop_bank AS bank5 ON
(bank5.userid = post.user_id AND bank5.currencyid = 5)
LEFT JOIN xf_user AS shop_pointstable_5 ON
(shop_pointstable_5.user_id = post.user_id)
LEFT JOIN xf_user AS credits_pointstable_1 ON
(credits_pointstable_1.user_id = post.user_id)
LEFT JOIN xf_user AS credits_pointstable_2 ON
(credits_pointstable_2.user_id = post.user_id)
LEFT JOIN xf_user AS credits_pointstable_3 ON
(credits_pointstable_3.user_id = post.user_id)
LEFT JOIN xf_user AS credits_pointstable_4 ON
(credits_pointstable_4.user_id = post.user_id)
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: 777
Run Time: 0.002069
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | post | ref | thread_id_post_date,thread_id_position | thread_id_post_date | 4 | const | 1 | Using where; Using filesort |
SIMPLE | bb_code_parse_cache | eq_ref | content_type_id | content_type_id | 31 | const,shinkarp_xenforo.post.post_id | 1 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | user_privacy | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | signature_parse_cache | eq_ref | content_type_id | content_type_id | 31 | const,shinkarp_xenforo.post.user_id | 1 | Using where |
SIMPLE | session_activity | eq_ref | PRIMARY | PRIMARY | 22 | shinkarp_xenforo.post.user_id,func | 1 | Using where |
SIMPLE | bank2 | eq_ref | PRIMARY | PRIMARY | 8 | shinkarp_xenforo.post.user_id,const | 1 | |
SIMPLE | shop_pointstable_2 | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | bank3 | eq_ref | PRIMARY | PRIMARY | 8 | shinkarp_xenforo.post.user_id,const | 1 | |
SIMPLE | shop_pointstable_3 | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | bank4 | eq_ref | PRIMARY | PRIMARY | 8 | shinkarp_xenforo.post.user_id,const | 1 | |
SIMPLE | shop_pointstable_4 | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | bank5 | eq_ref | PRIMARY | PRIMARY | 8 | shinkarp_xenforo.post.user_id,const | 1 | |
SIMPLE | shop_pointstable_5 | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | credits_pointstable_1 | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | credits_pointstable_2 | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | credits_pointstable_3 | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SIMPLE | credits_pointstable_4 | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.post.user_id | 1 | |
SELECT thread.*
FROM xf_thread AS thread
WHERE thread.thread_id = ?
Params: 777
Run Time: 0.000182
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | thread | const | PRIMARY | PRIMARY | 4 | const | 1 | |
INSERT DELAYED INTO xf_thread_view
(thread_id)
VALUES
(?)
Params: 777
Run Time: 0.000055
SELECT user.*
, bank2.points AS currency_2_bank, user.dbtech_credits_credits AS shop_2, bank3.points AS currency_3_bank, user.card_voucher AS shop_3, bank4.points AS currency_4_bank, user.dm_voucher AS shop_4, bank5.points AS currency_5_bank, user.quest AS shop_5, user.dbtech_credits_credits AS credits_1, user.card_voucher AS credits_2, user.dm_voucher AS credits_3, user.quest AS credits_4
FROM xf_user AS user
LEFT JOIN xf_dbtech_shop_bank AS bank2 ON
(bank2.userid = user.user_id AND bank2.currencyid = 2)
LEFT JOIN xf_dbtech_shop_bank AS bank3 ON
(bank3.userid = user.user_id AND bank3.currencyid = 3)
LEFT JOIN xf_dbtech_shop_bank AS bank4 ON
(bank4.userid = user.user_id AND bank4.currencyid = 4)
LEFT JOIN xf_dbtech_shop_bank AS bank5 ON
(bank5.userid = user.user_id AND bank5.currencyid = 5)
WHERE (1=1) AND (user.subaccount_parent_state = 'enabled')
ORDER BY user.username
Run Time: 0.004208
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | user | ALL | | | | | 402 | Using where; Using filesort |
SIMPLE | bank2 | eq_ref | PRIMARY | PRIMARY | 8 | shinkarp_xenforo.user.user_id,const | 1 | |
SIMPLE | bank3 | eq_ref | PRIMARY | PRIMARY | 8 | shinkarp_xenforo.user.user_id,const | 1 | |
SIMPLE | bank4 | eq_ref | PRIMARY | PRIMARY | 8 | shinkarp_xenforo.user.user_id,const | 1 | |
SIMPLE | bank5 | eq_ref | PRIMARY | PRIMARY | 8 | shinkarp_xenforo.user.user_id,const | 1 | |
SELECT field.*
,
ff.field_id, ff.node_id
FROM xf_thread_field AS field
INNER JOIN xf_forum_field AS ff ON
(ff.field_id = field.field_id)
WHERE (ff.node_id IN(132))
ORDER BY field.materialized_order
Run Time: 0.000424
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | field | ALL | PRIMARY | | | | 1 | Using filesort |
SIMPLE | ff | eq_ref | PRIMARY,field_id | PRIMARY | 198 | const,shinkarp_xenforo.field.field_id | 1 | Using index |
SELECT field.*
,
ff.field_id, ff.node_id
FROM xf_thread_field AS field
INNER JOIN xf_forum_field AS ff ON
(ff.field_id = field.field_id)
WHERE (ff.node_id IN(132))
ORDER BY field.materialized_order
Run Time: 0.000177
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | field | ALL | PRIMARY | | | | 1 | Using filesort |
SIMPLE | ff | eq_ref | PRIMARY,field_id | PRIMARY | 198 | const,shinkarp_xenforo.field.field_id | 1 | Using index |
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: 993f092d2ac5a049f2325cab474caab4, , 1615156322
Run Time: 0.000158
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=777, 1615152722,
Run Time: 0.000081
SELECT *
FROM siropu_referral_contests
WHERE contest_enabled = 1
ORDER BY contest_id DESC
Run Time: 0.000182
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | siropu_referral_contests | index | | PRIMARY | 4 | | 1 | Using where |
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', 'waindigo_quick_reply_prepend_postasuser', 'waindigo_post_as_user_field_postasuser', 'ragtek_mm_multimod', 'preview_tooltip', '_header_node.132', '_footer_node.132', '_header_post_node.132', '_footer_post_node.132', 'waindigo_quick_reply_prepend_customfields', 'waindigo_header_node_customfields', 'thread_view', 'dbtech_shop_navbar', 'siropu_custom_tabs_child_list', 'th_navigation_visitor_tab_subaccounts', 'siropu_referral_contests_embed', 'th_you_are_using_as_user_loginasuser', 'th_moderator_bar_loginasuser', 'wf_hook_moderator_bar', 'wf_revealer', 'dbtech_credits_navbar_links', 'dbtech_credits_navbar_footer', 'dbtech_credits_user_edit_tab', 'dbtech_credits_user_edit_pane', 'dbtech_credits_trophy_edit', 'dbtech_credits_alert_edit', 'dbtech_credits_postbit_stats', 'dbtech_credits_member_stats', 'dbtech_credits_navbar_right', 'dbtech_shop_user_edit_tab', 'dbtech_shop_user_edit_pane', 'dbtech_shop_trophy_edit', 'dbtech_shop_alert_edit', 'dbtech_shop_postbit_stats', 'dbtech_shop_postbit_purchasebit', 'dbtech_shop_member_view_heading', 'dbtech_shop_profile_purchasebit', 'dbtech_shop_member_view_content', 'dbtech_shop_navbar_right', 'dbtech_shop_memberinfo_block_profilemusic', 'PAGE_CONTAINER')
AND style_id = ?
AND language_id = ?
Params: 5, 1
Run Time: 0.001262
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 47 | Using where |
SELECT user.*
,
user_profile.*,
user_option.*,
user_privacy.*,
permission_combination.cache_value AS global_permission_cache, bank2.points AS currency_2_bank, user.dbtech_credits_credits AS shop_2, bank3.points AS currency_3_bank, user.card_voucher AS shop_3, bank4.points AS currency_4_bank, user.dm_voucher AS shop_4, bank5.points AS currency_5_bank, user.quest AS shop_5, user.dbtech_credits_credits AS credits_1, user.card_voucher AS credits_2, user.dm_voucher AS credits_3, user.quest AS credits_4,
subaccount_parent.subaccount_user_ids AS parent_subaccount_user_ids,
IF (user.email <> '', user.email, subaccount_parent.email) AS email
FROM xf_user AS user
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)
LEFT JOIN xf_user_privacy AS user_privacy ON
(user_privacy.user_id = user.user_id)
LEFT JOIN xf_permission_combination AS permission_combination ON
(permission_combination.permission_combination_id = user.permission_combination_id)
LEFT JOIN xf_dbtech_shop_bank AS bank2 ON
(bank2.userid = user.user_id AND bank2.currencyid = 2)
LEFT JOIN xf_dbtech_shop_bank AS bank3 ON
(bank3.userid = user.user_id AND bank3.currencyid = 3)
LEFT JOIN xf_dbtech_shop_bank AS bank4 ON
(bank4.userid = user.user_id AND bank4.currencyid = 4)
LEFT JOIN xf_dbtech_shop_bank AS bank5 ON
(bank5.userid = user.user_id AND bank5.currencyid = 5)
LEFT JOIN xf_user AS subaccount_parent ON
(user.subaccount_parent_user_id = subaccount_parent.user_id AND user.subaccount_parent_state = 'enabled')
WHERE user.user_id = ?
Params: 1
Run Time: 0.000897
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | user | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user_profile | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user_option | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user_privacy | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | bank2 | const | PRIMARY | PRIMARY | 8 | const,const | 1 | |
SIMPLE | bank3 | const | PRIMARY | PRIMARY | 8 | const,const | 1 | |
SIMPLE | bank4 | const | PRIMARY | PRIMARY | 8 | const,const | 1 | |
SIMPLE | bank5 | const | PRIMARY | PRIMARY | 8 | const,const | 1 | |
SIMPLE | subaccount_parent | const | PRIMARY | PRIMARY | 4 | const | 0 | unique row not found |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('waindigo_thread_view_tools_links_customfields')
AND style_id = ?
AND language_id = ?
Params: 5, 1
Run Time: 0.000170
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 trophy.*,
user_trophy.award_date
FROM xf_user_trophy AS user_trophy
INNER JOIN xf_trophy AS trophy ON (trophy.trophy_id = user_trophy.trophy_id)
WHERE user_trophy.user_id = ?
ORDER BY user_trophy.award_date DESC
Params: 1
Run Time: 0.000385
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | user_trophy | ref | PRIMARY,user_id_award_date | user_id_award_date | 4 | const | 4 | Using where; Using index |
SIMPLE | trophy | eq_ref | PRIMARY | PRIMARY | 4 | shinkarp_xenforo.user_trophy.trophy_id | 1 | |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('trophy_5_title', 'trophy_5_description')
Params: 1
Run Time: 0.000258
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | range | PRIMARY | PRIMARY | 106 | | 2 | Using where |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('trophy_3_title', 'trophy_3_description')
Params: 1
Run Time: 0.000103
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | range | PRIMARY | PRIMARY | 106 | | 2 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('th_navigation_tabs_members_whoswho')
AND style_id = ?
AND language_id = ?
Params: 5, 1
Run Time: 0.000101
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 60 | const,const,const | 1 | |