Page Time: 3.9913s

Memory: 8.0926 MB (Peak: 9.7212 MB)

Queries (44, time: 3.8251s, 95.8%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000082
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. 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: 22372
    Run Time: 0.000353
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  3. 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: 6
    Run Time: 0.000490
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. 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,
    		0 AS post_is_watched
    FROM xf_post AS post
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 0 AND post.position < 10) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 22372
    Run Time: 0.001325
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 10Using index condition; Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4ccxsccxs_dd.post.user_id1 
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22ccxsccxs_dd.post.user_id,func1Using where
  5. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 22372
    Run Time: 0.000115
  6. SELECT comment.*
    	,
    		user.*, IF(user.username IS NULL, comment.username, user.username) AS username,
    		0 AS like_date
    FROM xf_brivium_post_comment AS comment
    	
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = comment.user_id)
    WHERE (comment.comment_id IN (141683, 141684, 141718, 141719, 141750, 141751, 141768, 141769, 141810)) AND (comment.message_state = 'visible')
    ORDER BY comment.post_date
    Run Time: 0.001478
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEcommentrangePRIMARYPRIMARY4 9Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.comment.user_id1 
  7. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_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)
    WHERE liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 141683
    Run Time: 0.000781
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  8. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_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)
    WHERE liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 141684
    Run Time: 0.000682
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  9. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_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)
    WHERE liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 141718
    Run Time: 0.000699
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  10. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_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)
    WHERE liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 141719
    Run Time: 0.000701
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  11. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_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)
    WHERE liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 141750
    Run Time: 0.000693
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  12. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_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)
    WHERE liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 141751
    Run Time: 0.000684
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  13. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_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)
    WHERE liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 141768
    Run Time: 0.000705
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  14. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_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)
    WHERE liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 141769
    Run Time: 0.000942
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  15. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_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)
    WHERE liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 141810
    Run Time: 0.000988
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  16. 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=22372, 1711631368,
    Run Time: 0.000104
  17. 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', 'editor', 'thread_view', 'wf_hook_footer', 'wf_hook_moderator_bar', 'dark_taigachat', 'dark_taigachat_list', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 7, 1
    Run Time: 0.000187
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 14Using where
  18. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('BRCEP_write_your_comment')
    Params: 1
    Run Time: 0.000058
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  19. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 2
    Run Time: 0.000932
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  20. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRCEP_post_public_controls')
    	AND style_id = ?
    	AND language_id = ?
    Params: 7, 1
    Run Time: 0.000079
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  21. SELECT * FROM x_post_rule_post WHERE post_id = '3058794'
    Run Time: 0.454083
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  22. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('VNXF_Loto_Post')
    	AND style_id = ?
    	AND language_id = ?
    Params: 7, 1
    Run Time: 0.000112
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  23. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3058794'
    Run Time: 0.000448
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const1Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  24. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('VNXF_Like_Info')
    	AND style_id = ?
    	AND language_id = ?
    Params: 7, 1
    Run Time: 0.000083
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  25. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 6
    Run Time: 0.000871
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  26. SELECT * FROM x_post_rule_post WHERE post_id = '3058930'
    Run Time: 0.422403
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  27. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3058930'
    Run Time: 0.000353
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const1Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  28. SELECT * FROM x_post_rule_post WHERE post_id = '3058951'
    Run Time: 0.438181
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  29. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3058951'
    Run Time: 0.000491
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const1Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  30. SELECT * FROM x_post_rule_post WHERE post_id = '3061533'
    Run Time: 0.402450
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  31. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3061533'
    Run Time: 0.000496
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const1Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  32. SELECT * FROM x_post_rule_post WHERE post_id = '3061557'
    Run Time: 0.373623
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  33. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3061557'
    Run Time: 0.000591
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const1Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  34. SELECT * FROM x_post_rule_post WHERE post_id = '3064330'
    Run Time: 0.351881
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  35. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3064330'
    Run Time: 0.000326
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const2Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  36. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 6112
    Run Time: 0.000693
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  37. SELECT * FROM x_post_rule_post WHERE post_id = '3064449'
    Run Time: 0.331705
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  38. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3064449'
    Run Time: 0.000244
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const2Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  39. SELECT * FROM x_post_rule_post WHERE post_id = '3066791'
    Run Time: 0.342237
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  40. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3066791'
    Run Time: 0.000393
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const1Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  41. SELECT * FROM x_post_rule_post WHERE post_id = '3066936'
    Run Time: 0.346512
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  42. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3066936'
    Run Time: 0.000381
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const1Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  43. SELECT * FROM x_post_rule_post WHERE post_id = '3069725'
    Run Time: 0.344134
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    392633Using where
  44. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3069725'
    Run Time: 0.000362
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const1Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 

Included Files (155, XenForo Classes: 67)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Cache.php
  19. library/Zend/Cache/Backend/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/WidgetFramework/Listener.php
  29. library/WidgetFramework/Option.php
  30. library/WidgetFramework/ShippableHelper/Updater.php
  31. library/Brivium/BriviumHelper/EventListeners.php
  32. library/Brivium/BriviumHelper/1010071/EventListeners.php
  33. library/VNXF/Loto/Listener.php
  34. library/UserInfo/Listener.php
  35. library/VietXfAdvStats/Listener.php
  36. library/Dark/TaigaChat/EventListener/Listener.php
  37. library/bdMedal/Listener.php
  38. library/HDJuegos/WaterMarkAdd/Listener.php
  39. library/LiamW/AllRich/Addon.php
  40. library/XenForo/Router.php
  41. library/XenForo/Route/Filter.php
  42. library/XenForo/Route/Interface.php
  43. library/XenForo/Route/ResponseSuffix.php
  44. library/XenForo/Route/Prefix.php
  45. library/XenForo/Route/Prefix/Threads.php
  46. library/vtLai/UrlKhongDau/Listener.php
  47. library/vtLai/UrlKhongDau/Threads.php
  48. library/XenForo/RouteMatch.php
  49. library/XenForo/ControllerPublic/Thread.php
  50. library/XenForo/ControllerPublic/Abstract.php
  51. library/XenForo/Controller.php
  52. library/Vinavb/CustomNodeIcon/Listener.php
  53. library/XenPlaza/XPlimitLink/Listener/Listener.php
  54. library/VNXF/Loto/ControllerPublic/Thread.php
  55. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  56. library/Brivium/CommentEachPost/ControllerPublic/Thread.php
  57. library/bdMedal/Extend/ControllerPublic/Thread.php
  58. library/XenPlaza/XPlimitLink/ControllerPublic/Thread.php
  59. library/XenForo/Input.php
  60. library/XenForo/Session.php
  61. library/Zend/Db.php
  62. library/Zend/Db/Adapter/Mysqli.php
  63. library/Zend/Db/Adapter/Abstract.php
  64. library/Zend/Db/Select.php
  65. library/Zend/Db/Expr.php
  66. library/Zend/Db/Profiler.php
  67. library/Zend/Db/Statement/Mysqli.php
  68. library/Zend/Db/Statement.php
  69. library/Zend/Db/Statement/Interface.php
  70. library/XenForo/Helper/Ip.php
  71. library/XenForo/Visitor.php
  72. library/XenForo/Model/User.php
  73. library/UserInfo/User.php
  74. library/WidgetFramework/XenForo/Model/User.php
  75. library/VietXfAdvStats/XenForo/Model/User.php
  76. library/Zend/Db/Profiler/Query.php
  77. library/XenForo/Permission.php
  78. library/XenForo/Helper/Php.php
  79. library/XenForo/Phrase.php
  80. library/XenForo/Locale.php
  81. library/XenForo/ControllerHelper/ForumThreadPost.php
  82. library/XenForo/ControllerHelper/Abstract.php
  83. library/XenForo/Model/Thread.php
  84. library/WidgetFramework/XenForo/Model/Thread.php
  85. library/VietXfAdvStats/XenForo/Model/Thread.php
  86. library/XenForo/Model/Forum.php
  87. library/XenForo/Helper/String.php
  88. library/XenForo/Helper/Discussion.php
  89. library/XenForo/Model/Post.php
  90. library/Brivium/CommentEachPost/Model/Post.php
  91. library/vtLai/UrlKhongDau/Converter.php
  92. library/Brivium/CommentEachPost/Model/Comment.php
  93. library/XenForo/Model/Attachment.php
  94. library/Brivium/CommentEachPost/Model/Attachment.php
  95. library/HDJuegos/WaterMarkAdd/ModelOverride/Attachment.php
  96. library/XenForo/Model/Node.php
  97. library/XenForo/Route/Prefix/Categories.php
  98. library/vtLai/UrlKhongDau/Categories.php
  99. library/XenForo/Route/Prefix/Forums.php
  100. library/vtLai/UrlKhongDau/Forums.php
  101. library/bdMedal/Model/Awarded.php
  102. library/bdMedal/Option.php
  103. library/XenForo/ControllerResponse/View.php
  104. library/XenForo/ControllerResponse/Abstract.php
  105. library/XenForo/Model/Like.php
  106. library/XenForo/Helper/Cookie.php
  107. library/XenForo/ViewRenderer/HtmlPublic.php
  108. library/XenForo/ViewRenderer/Abstract.php
  109. library/XenForo/Template/Public.php
  110. library/XenForo/Template/Abstract.php
  111. library/WidgetFramework/Core.php
  112. library/XenForo/Model/Moderator.php
  113. library/WidgetFramework/Model/Widget.php
  114. library/WidgetFramework/Helper/Sort.php
  115. library/XenForo/ViewPublic/Thread/View.php
  116. library/XenForo/ViewPublic/Base.php
  117. library/XenForo/View.php
  118. library/Dark/ParseHTML/EventListener.php
  119. library/Dark/ParseHTML/ViewPublic/Thread/View.php
  120. library/WidgetFramework/XenForo/View1.php
  121. library/Brivium/CommentEachPost/ViewPublic/Thread/View.php
  122. library/XenForo/BbCode/Parser.php
  123. library/XenForo/BbCode/Formatter/Base.php
  124. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  125. library/Brivium/CommentEachPost/Helper/Render.php
  126. library/XenForo/Route/Prefix/Posts.php
  127. library/XenForo/ViewPublic/Helper/Editor.php
  128. library/VietXfAdvStats/Model/GetUserGroup.php
  129. library/XenForo/ViewPublic/Helper/Message.php
  130. library/XenForo/BbCode/TextWrapper.php
  131. library/Dark/ParseHTML/BbCode/Formatter/Ritsu.php
  132. library/Dark/ParseHTML/BbCode/Parser.php
  133. library/Dark/ParseHTML/ViewPublic/Helper/Message.php
  134. library/Dark/ParseHTML/BbCode/TextWrapper.php
  135. library/XenForo/Route/Prefix/Members.php
  136. library/vtLai/UrlKhongDau/Members.php
  137. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  138. library/WidgetFramework/Template/Extended.php
  139. library/LiamW/AllRich/Template/Helper/Core.php
  140. library/Brivium/CommentEachPost/EventListeners/Listener.php
  141. library/VNXF/LikeInfo/Listener.php
  142. library/Tinhte/Html5Uploader/Listener.php
  143. library/XenForo/Model/Avatar.php
  144. library/XenForo/ViewPublic/Helper/User.php
  145. library/XenForo/Model/UserField.php
  146. library/XenForo/DataWriter.php
  147. library/VNXF/Loto/Model.php
  148. library/VNXF/LikeInfo/Model.php
  149. library/Brivium/CommentEachPost/Route/Prefix/Comment.php
  150. library/XenForo/Helper/Criteria.php
  151. library/XenForo/Debug.php
  152. library/VietXfAdvStats/Option.php
  153. library/Tinhte/Html5Uploader/Template.php
  154. library/XenForo/ViewRenderer/Json.php
  155. library/Vinavb/CustomNodeIcon/Icon.php