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.005488
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.000449
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 27 | | 2 | Using where |
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.000349
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT data_value
FROM xf_data_registry
WHERE data_key = ?
Params: dark_postrating_ratings
Run Time: 0.000299
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
SELECT user.*
,
user_profile.*,
user_option.*,
user_privacy.*,
permission_combination.cache_value AS global_permission_cache,
IF (session_activity.view_date IS NULL, user.last_activity, session_activity.view_date) AS effective_last_activity,
session_activity.view_date, session_activity.controller_name, session_activity.controller_action, session_activity.params, session_activity.ip,
0 AS following_0,
0 AS friends_0
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (1,2,4,5,6,8)) as positive_rating_count
, (user.like_count + coalesce((select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (1,2,4,5,6,8)), 0)) as positive_rating_count_incl_likes
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (3)) as neutral_rating_count
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id) as total_rating_count
,snog_socialgroups.socialgroups,snog_socialgroups.groupmoderator,snog_pendinggroups.pendinggroups
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_session_activity AS session_activity ON
(session_activity.user_id = user.user_id AND session_activity.unique_key = CAST(user.user_id AS BINARY))
LEFT JOIN xf_snog_socialgroup_members AS snog_socialgroups ON
(snog_socialgroups.user_id = user.user_id)
LEFT JOIN xf_snog_socialgroup_members_pending AS snog_pendinggroups ON
(snog_pendinggroups.user_id = user.user_id)
WHERE user.user_id = ?
Params: 37312
Run Time: 0.001956
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
PRIMARY | user | const | PRIMARY | PRIMARY | 4 | const | 1 | |
PRIMARY | user_profile | const | PRIMARY | PRIMARY | 4 | const | 1 | |
PRIMARY | user_option | const | PRIMARY | PRIMARY | 4 | const | 1 | |
PRIMARY | user_privacy | const | PRIMARY | PRIMARY | 4 | const | 1 | |
PRIMARY | permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
PRIMARY | session_activity | const | PRIMARY | PRIMARY | 22 | const,const | 0 | unique row not found |
PRIMARY | snog_socialgroups | const | PRIMARY | PRIMARY | 4 | const | 0 | unique row not found |
PRIMARY | snog_pendinggroups | const | PRIMARY | PRIMARY | 4 | const | 0 | unique row not found |
DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | const | 6 | |
DEPENDENT SUBQUERY | dark_postrating_count | const | user_id_rating | user_id_rating | 8 | const,const | 1 | |
DEPENDENT SUBQUERY | dark_postrating_count | range | user_id_rating | user_id_rating | 8 | | 6 | Using index condition |
DEPENDENT SUBQUERY | dark_postrating_count | range | user_id_rating | user_id_rating | 8 | | 6 | Using index condition |
SELECT COUNT(*)
FROM xf_profile_post AS profile_post
WHERE (profile_post.profile_user_id = 37312) AND (profile_post.message_state IN ('visible'))
Run Time: 0.001504
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | profile_post | ref | profile_user_id_post_date | profile_user_id_post_date | 4 | const | 17 | Using where |
SELECT profile_post.*
,
posting_user.*,
IF(posting_user.username IS NULL, profile_post.username, posting_user.username) AS username,
0 AS like_date
FROM xf_profile_post AS profile_post
LEFT JOIN xf_user AS posting_user ON
(posting_user.user_id = profile_post.user_id)
WHERE (profile_post.profile_user_id = 37312) AND (profile_post.message_state IN ('visible'))
ORDER BY profile_post.post_date DESC
LIMIT 15
Run Time: 0.001063
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | profile_post | ref | profile_user_id_post_date | profile_user_id_post_date | 4 | const | 17 | Using where |
SIMPLE | posting_user | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.profile_post.user_id | 1 | |
SELECT profile_post_comment.*
,
user.*,
IF(user.username IS NULL, profile_post_comment.username, user.username) AS username,
0 AS like_date
FROM xf_profile_post_comment AS profile_post_comment
LEFT JOIN xf_user AS user ON
(user.user_id = profile_post_comment.user_id)
WHERE (profile_post_comment.profile_post_comment_id IN(5953, 5961, 5969, 3050, 3051, 3052)) AND (profile_post_comment.message_state IN ('visible'))
Run Time: 0.001075
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | profile_post_comment | range | PRIMARY | PRIMARY | 4 | | 6 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.profile_post_comment.user_id | 1 | |
SELECT user_field.*
,
field_value.field_value
FROM xf_user_field AS user_field
LEFT JOIN xf_user_field_value AS field_value ON
(field_value.field_id = user_field.field_id AND field_value.user_id = 37312)
WHERE (user_field.display_group <> 'preferences' AND user_field.viewable_profile = 1)
ORDER BY user_field.display_group, user_field.display_order
Run Time: 0.000869
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | user_field | ALL | display_group_order | | | | 11 | Using where; Using filesort |
SIMPLE | field_value | eq_ref | PRIMARY,field_id | PRIMARY | 31 | const,thevog_net.user_field.field_id | 1 | |
SELECT
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,5,6,8)) as positive_rating_count
, (user.like_count + coalesce((select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (1,2,4,5,6,8)), 0)) as positive_rating_count_incl_likes
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (3)) as neutral_rating_count
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id) as total_rating_count
,snog_socialgroups.socialgroups,snog_socialgroups.groupmoderator,snog_pendinggroups.pendinggroups
FROM xf_user_follow AS user_follow
INNER JOIN xf_user AS user ON
(user.user_id = user_follow.follow_user_id)
INNER JOIN xf_user_profile AS user_profile ON
(user_profile.user_id = user.user_id)
INNER JOIN xf_user_option AS user_option ON
(user_option.user_id = user.user_id)
LEFT JOIN xf_snog_socialgroup_members AS snog_socialgroups ON
(snog_socialgroups.user_id = user.user_id)
LEFT JOIN xf_snog_socialgroup_members_pending AS snog_pendinggroups ON
(snog_pendinggroups.user_id = user.user_id)
WHERE user_follow.user_id = ?
ORDER BY RAND()
LIMIT 6
Params: 37312
Run Time: 0.004203
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
PRIMARY | user_follow | ref | PRIMARY,follow_user_id | PRIMARY | 4 | const | 16 | Using index; Using temporary; Using filesort |
PRIMARY | user_option | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.follow_user_id | 1 | |
PRIMARY | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.follow_user_id | 1 | |
PRIMARY | user | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.follow_user_id | 1 | |
PRIMARY | snog_socialgroups | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.follow_user_id | 1 | |
PRIMARY | snog_pendinggroups | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.follow_user_id | 1 | |
DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | thevog_net.user.user_id | 2 | |
DEPENDENT SUBQUERY | dark_postrating_count | eq_ref | user_id_rating | user_id_rating | 8 | thevog_net.user.user_id,const | 1 | |
DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | thevog_net.user.user_id | 2 | Using index condition |
DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | thevog_net.user.user_id | 2 | Using index condition |
SELECT COUNT(*)
FROM xf_user_follow
WHERE follow_user_id = ?
Params: 37312
Run Time: 0.000331
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_user_follow | ref | follow_user_id | follow_user_id | 4 | const | 1 | Using index |
SELECT 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,5,6,8)) as positive_rating_count
, (user.like_count + coalesce((select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (1,2,4,5,6,8)), 0)) as positive_rating_count_incl_likes
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (3)) as neutral_rating_count
,(select sum(count_received) from dark_postrating_count where user_id = user.user_id) as total_rating_count
,snog_socialgroups.socialgroups,snog_socialgroups.groupmoderator,snog_pendinggroups.pendinggroups
FROM xf_user_follow AS user_follow
INNER JOIN xf_user AS user ON
(user.user_id = user_follow.user_id)
INNER JOIN xf_user_profile AS user_profile ON
(user_profile.user_id = user.user_id)
INNER JOIN xf_user_option AS user_option ON
(user_option.user_id = user.user_id)
LEFT JOIN xf_snog_socialgroup_members AS snog_socialgroups ON
(snog_socialgroups.user_id = user.user_id)
LEFT JOIN xf_snog_socialgroup_members_pending AS snog_pendinggroups ON
(snog_pendinggroups.user_id = user.user_id)
WHERE user_follow.follow_user_id = ?
ORDER BY RAND()
LIMIT 6
Params: 37312
Run Time: 0.001423
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
PRIMARY | user_follow | ref | PRIMARY,follow_user_id | follow_user_id | 4 | const | 1 | Using index; Using temporary; Using filesort |
PRIMARY | user_option | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.user_id | 1 | |
PRIMARY | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.user_id | 1 | |
PRIMARY | user | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.user_id | 1 | |
PRIMARY | snog_socialgroups | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.user_id | 1 | |
PRIMARY | snog_pendinggroups | eq_ref | PRIMARY | PRIMARY | 4 | thevog_net.user_follow.user_id | 1 | |
DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | thevog_net.user.user_id | 2 | |
DEPENDENT SUBQUERY | dark_postrating_count | eq_ref | user_id_rating | user_id_rating | 8 | thevog_net.user.user_id,const | 1 | |
DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | thevog_net.user.user_id | 2 | Using index condition |
DEPENDENT SUBQUERY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | thevog_net.user.user_id | 2 | Using index condition |
SELECT *
FROM xf_friend
WHERE (user_id = ? AND friend_user_id = ?)
OR (user_id = ? AND friend_user_id = ?)
Params: 0, 37312, 37312, 0
Run Time: 0.000383
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_friend | range | PRIMARY | PRIMARY | 8 | | 2 | Using where |
SELECT friend.*, user.*, mutual_friend.friend_state AS mutual_friend_state
FROM xf_friend AS friend
INNER JOIN xf_user AS user
ON (((user.user_id = friend.user_id AND friend.user_id != ?)
OR (user.user_id = friend.friend_user_id AND friend.friend_user_id != ?)) AND user.is_banned = 0)
LEFT JOIN xf_friend AS mutual_friend
ON ((user.user_id = mutual_friend.user_id AND mutual_friend.friend_user_id = ?)
OR (user.user_id = mutual_friend.friend_user_id AND mutual_friend.user_id = ?))
WHERE (friend.user_id = ? OR friend.friend_user_id = ?)
AND friend.friend_state = 'confirmed'
LIMIT 6
Params: 37312, 37312, 0, 0, 37312, 37312
Run Time: 0.320762
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | user | range | PRIMARY | PRIMARY | 4 | | 46260 | Using where |
SIMPLE | friend | ALL | PRIMARY | | | | 18343 | Using where; Using join buffer (Block Nested Loop) |
SIMPLE | mutual_friend | ALL | PRIMARY | | | | 18343 | Using where; Using join buffer (Block Nested Loop) |
SELECT sonnb_xengallery_profile_cover
FROM sonnb_xengallery_profile_cover
WHERE user_id = ?
Params: 37312
Run Time: 0.000298
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | | | | | | | | no matching row in const table |
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: 50699e0ce7c3c92492f78eb221be1d4b, , 1614940507
Run Time: 0.002562
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_Member, Member, valid, user_id=37312, 1614936907,
Run Time: 0.002298
SELECT * FROM classifieds_items WHERE starts >= 1614384000 AND active=1 AND status <> 2 AND feespaid = 1 ORDER BY starts DESC
Run Time: 0.000719
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | classifieds_items | range | starts | starts | 4 | | 2 | Using index condition; Using where |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('user_field_type_of_motorcycle_curren_desc', 'user_field_about_me_desc', 'user_field_years_riding_desc', 'user_field_hobbies_amp_interests_desc', 'user_field_aim_desc', 'user_field_icq_desc', 'user_field_yahoo_desc', 'user_field_skype_desc', 'user_field_gtalk_desc', 'user_field_facebook_desc', 'user_field_twitter_desc', 'home', 'snog_socialgroups_groups', 'classifieds_forsale')
Params: 1
Run Time: 0.000485
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | range | PRIMARY | PRIMARY | 106 | | 14 | Using where |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('classifieds_at')
Params: 1
Run Time: 0.000331
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, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('MicroClassifieds_navbar')
Params: 1
Run Time: 0.000304
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 ('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', 'sonnb_xengallery_bbcode_photo', 'sonnb_xengallery_bbcode_video', 'sonnb_xengallery_bbcode_album', 'wf_widget_wrapper', 'wf_widget_threads', 'sonnb_xengallery_member_view_info', 'sonnb_xengallery_member_view_tabs_heading', 'sonnb_xengallery_member_view_tabs_content', 'member_view', 'EWRporta_Navtabs', 'snog_socialgroups_navlinks', 'sonnb_xengallery_option_copyright', 'sonnbXG_copyright', 'sonnb_xengallery_navbar_template', 'MicroClassifieds_navigation_tabs', 'EWRatendo_Navtabs', 'wf_hook_moderator_bar', 'wf_revealer', 'findme', 'waindigo_you_are_using_as_user_loginasuser', 'waindigo_moderator_bar_loginasuser', 'dark_postrating', 'dark_postrating_member', 'dark_postrating_member_totals', 'message_user_info_extra', 'user_criteria_content', 'thread_list_item_icon_key', 'dark_postrating_member_notable_tabs', 'dark_postrating_account_wrapper', 'dark_postrating_navigation_visitor_tab', 'dark_postrating_visitor_panel', 'dark_postrating_member_card', 'dark_postrating_member_info', 'dark_postrating_message_user_info', 'sonnb_xengallery_nav_visitor', 'PAGE_CONTAINER')
AND style_id = ?
AND language_id = ?
Params: 7, 1
Run Time: 0.002312
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 43 | Using where |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('events')
Params: 1
Run Time: 0.000322
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | const | PRIMARY | PRIMARY | 106 | const,const | 1 | |
SELECT data_value
FROM xf_data_registry
WHERE data_key = ?
Params: advertisements
Run Time: 0.000361
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
SELECT * FROM `xf_ads` WHERE `active` = 1 ORDER BY `xf_ads`.`display_order` ASC
Run Time: 0.000367
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_ads | ALL | | | | | 11 | Using where; Using filesort |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('siropu_easy_user_ban_profile_link')
AND style_id = ?
AND language_id = ?
Params: 7, 1
Run Time: 0.000346
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 count_given as rating_count, rating, 1 as given
FROM dark_postrating_count
WHERE user_id = ?
UNION
SELECT count_received as rating_count, rating, 0 as given
FROM dark_postrating_count
WHERE user_id = ?
ORDER BY rating_count desc, rating asc
Params: 37312, 37312
Run Time: 0.000513
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
PRIMARY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | const | 6 | |
UNION | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | const | 6 | |
UNION RESULT | <union1,2> | ALL | | | | | | Using temporary; Using filesort |
SELECT COUNT(*)
FROM xf_liked_content
WHERE like_user_id = ?
Params: 37312
Run Time: 0.000679
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_liked_content | ref | like_user_content_type_id | like_user_content_type_id | 4 | const | 268 | Using index |
SELECT count_given as rating_count, rating, 1 as given
FROM dark_postrating_count
WHERE user_id = ?
UNION
SELECT count_received as rating_count, rating, 0 as given
FROM dark_postrating_count
WHERE user_id = ?
ORDER BY rating_count desc, rating asc
Params: 37312, 37312
Run Time: 0.000434
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
PRIMARY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | const | 6 | |
UNION | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | const | 6 | |
UNION RESULT | <union1,2> | ALL | | | | | | Using temporary; Using filesort |
SELECT COUNT(*)
FROM xf_liked_content
WHERE like_user_id = ?
Params: 37312
Run Time: 0.000328
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_liked_content | ref | like_user_content_type_id | like_user_content_type_id | 4 | const | 268 | Using index |
SELECT count_given as rating_count, rating, 1 as given
FROM dark_postrating_count
WHERE user_id = ?
UNION
SELECT count_received as rating_count, rating, 0 as given
FROM dark_postrating_count
WHERE user_id = ?
ORDER BY rating_count desc, rating asc
Params: 37312, 37312
Run Time: 0.000379
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
PRIMARY | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | const | 6 | |
UNION | dark_postrating_count | ref | user_id_rating | user_id_rating | 4 | const | 6 | |
UNION RESULT | <union1,2> | ALL | | | | | | Using temporary; Using filesort |
SELECT COUNT(*)
FROM xf_liked_content
WHERE like_user_id = ?
Params: 37312
Run Time: 0.000374
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_liked_content | ref | like_user_content_type_id | like_user_content_type_id | 4 | const | 268 | Using index |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('sonnbXG_copyright', 'siropu_easy_user_ban_post_link')
AND style_id = ?
AND language_id = ?
Params: 7, 1
Run Time: 0.000433
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 2 | Using where |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc__1_member_view')
Run Time: 0.000446
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('waindigo_member_view_friend_blocks_friend')
AND style_id = ?
AND language_id = ?
Params: 7, 1
Run Time: 0.000364
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 title, template_compiled
FROM xf_template_compiled
WHERE title IN ('waindigo_member_view_friend_link_friend')
AND style_id = ?
AND language_id = ?
Params: 7, 1
Run Time: 0.000294
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 data_value
FROM xf_data_registry
WHERE data_key = ?
Params: advertisementcss
Run Time: 0.000244
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('nat_bodyjs')
AND style_id = ?
AND language_id = ?
Params: 7, 1
Run Time: 0.000291
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 60 | const,const,const | 1 | |