Page Time: 0.2917s

Memory: 4.0678 MB (Peak: 10.7476 MB)

Queries (5, time: 0.1493s, 51.2%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000120
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT *
    FROM xf_search
    WHERE search_id = ?
    Params: 30039586
    Run Time: 0.000320
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       Impossible WHERE noticed after reading const tables
  3. SELECT comment.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.*, post.user_id AS post_user_id, post.username AS post_username, post.post_date AS post_post_date, post.message AS post_message, 
    		comment.*,
    		node.title AS node_title, node.node_name,
    		user_profile.*,
    		user_option.*,
    		forum.*,
    		forum.last_post_id AS forum_last_post_id,
    		forum.last_post_date AS forum_last_post_date,
    		forum.last_post_user_id AS forum_last_post_user_id,
    		forum.last_post_username AS forum_last_post_username,
    		forum.last_thread_title AS forum_last_thread_title,
    		thread.last_post_id,
    		thread.last_post_date,
    		thread.last_post_user_id,
    		thread.last_post_username
    FROM xf_brivium_post_comment AS comment
    	
    		INNER JOIN xf_post AS post ON
    			(post.post_id = comment.post_id)
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		INNER JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = comment.user_id)
    		LEFT JOIN xf_user_option AS user_option ON
    			(user_option.user_id = comment.user_id)
    		LEFT JOIN xf_forum AS forum ON
    			(forum.node_id = thread.node_id)
    WHERE (comment.message_state = 'visible') AND (thread.discussion_type <> 'redirect') AND (forum.find_new = 1) AND (post.message_state IN ('visible'))
    ORDER BY comment.post_date
     LIMIT 200
    Run Time: 0.141604
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEcommentALL    120500Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.comment.user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.comment.user_id1 
    SIMPLEposteq_refPRIMARY,thread_id_post_date,thread_id_positionPRIMARY4ccxsccxs_dd.comment.post_id1Using where
    SIMPLEthreadeq_refPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4ccxsccxs_dd.post.thread_id1Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4ccxsccxs_dd.thread.node_id1 
    SIMPLEforumeq_refPRIMARYPRIMARY4ccxsccxs_dd.thread.node_id1Using where
  4. SELECT
    	post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		node.title AS node_title, node.node_name,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    	permission.cache_value AS node_permission_cache
    FROM xf_post AS post
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		INNER JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = thread.node_id)
    WHERE post.post_id IN (2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 28, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 206, 207, 208, 209, 210, 211, 212, 213)
    Run Time: 0.006484
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARY,thread_id_post_date,thread_id_positionPRIMARY4 200Using where
    SIMPLEthreadeq_refPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4ccxsccxs_dd.post.thread_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4ccxsccxs_dd.thread.node_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.post.user_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,ccxsccxs_dd.thread.node_id1Using where
  5. INSERT INTO `xf_search` (`search_results`, `result_count`, `search_type`, `search_query`, `search_constraints`, `search_order`, `search_grouping`, `user_results`, `warnings`, `user_id`, `search_date`, `query_hash`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    Params: [["post",2],["post",3],["post",4],["post",5],["post",6],["post",7],["post",8],["post",9],["post",10],["post",11],["post",12],["post",13],["post",14],["post",15],["post",16],["post",17],["post",18],["post",19],["post",20],["post",21],["post",22],["post",24],["post",25],["post",28],["post",29],["post",30],["post",31],["post",32],["post",34],["post",35],["post",36],["post",37],["post",39],["post",40],["post",41],["post",42],["post",43],["post",44],["post",45],["post",46],["post",47],["post",48],["post",49],["post",50],["post",51],["post",55],["post",56],["post",57],["post",58],["post",59],["post",60],["post",61],["post",62],["post",63],["post",64],["post",65],["post",66],["post",67],["post",68],["post",69],["post",70],["post",71],["post",72],["post",73],["post",74],["post",75],["post",76],["post",77],["post",78],["post",79],["post",80],["post",81],["post",82],["post",83],["post",84],["post",85],["post",86],["post",87],["post",88],["post",89],["post",90],["post",91],["post",92],["post",93],["post",94],["post",95],["post",96],["post",97],["post",98],["post",99],["post",100],["post",101],["post",102],["post",103],["post",104],["post",105],["post",106],["post",107],["post",108],["post",109],["post",110],["post",111],["post",112],["post",113],["post",114],["post",115],["post",116],["post",117],["post",118],["post",119],["post",120],["post",121],["post",122],["post",124],["post",125],["post",126],["post",127],["post",128],["post",129],["post",130],["post",131],["post",132],["post",133],["post",134],["post",135],["post",136],["post",137],["post",138],["post",139],["post",140],["post",141],["post",142],["post",144],["post",145],["post",146],["post",147],["post",152],["post",153],["post",154],["post",155],["post",156],["post",157],["post",158],["post",159],["post",160],["post",161],["post",162],["post",163],["post",164],["post",165],["post",166],["post",167],["post",168],["post",169],["post",170],["post",171],["post",172],["post",173],["post",174],["post",175],["post",176],["post",177],["post",178],["post",179],["post",180],["post",182],["post",183],["post",184],["post",185],["post",186],["post",187],["post",188],["post",189],["post",190],["post",191],["post",192],["post",193],["post",194],["post",195],["post",196],["post",197],["post",198],["post",199],["post",200],["post",201],["post",202],["post",203],["post",206],["post",207],["post",208],["post",209],["post",210],["post",211],["post",212],["post",213]], 195, recent-post-comments, , [], date, 0, , [], 0, 1714313960, 8f68cad4e7cdfc704e8e750e2d4cb8f2
    Run Time: 0.000743

Included Files (95, XenForo Classes: 43)

  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/FindNew.php
  46. library/vtLai/UrlKhongDau/Listener.php
  47. library/XenForo/RouteMatch.php
  48. library/XenForo/ControllerPublic/FindNew.php
  49. library/XenForo/ControllerPublic/Abstract.php
  50. library/XenForo/Controller.php
  51. library/Vinavb/CustomNodeIcon/Listener.php
  52. library/XenPlaza/XPlimitLink/Listener/Listener.php
  53. library/Brivium/CommentEachPost/ControllerPublic/FindNew.php
  54. library/XenForo/Input.php
  55. library/XenForo/Session.php
  56. library/Zend/Db.php
  57. library/Zend/Db/Adapter/Mysqli.php
  58. library/Zend/Db/Adapter/Abstract.php
  59. library/Zend/Db/Select.php
  60. library/Zend/Db/Expr.php
  61. library/Zend/Db/Profiler.php
  62. library/Zend/Db/Statement/Mysqli.php
  63. library/Zend/Db/Statement.php
  64. library/Zend/Db/Statement/Interface.php
  65. library/XenForo/Helper/Ip.php
  66. library/XenForo/Visitor.php
  67. library/XenForo/Model/User.php
  68. library/UserInfo/User.php
  69. library/WidgetFramework/XenForo/Model/User.php
  70. library/VietXfAdvStats/XenForo/Model/User.php
  71. library/Zend/Db/Profiler/Query.php
  72. library/XenForo/Permission.php
  73. library/XenForo/Helper/Php.php
  74. library/XenForo/Phrase.php
  75. library/XenForo/Locale.php
  76. library/XenForo/Model/Search.php
  77. library/XenForo/Model/Post.php
  78. library/Brivium/CommentEachPost/Model/Post.php
  79. library/Brivium/CommentEachPost/Model/Comment.php
  80. library/XenForo/Model/Thread.php
  81. library/WidgetFramework/XenForo/Model/Thread.php
  82. library/VietXfAdvStats/XenForo/Model/Thread.php
  83. library/XenForo/Model/Forum.php
  84. library/XenForo/ControllerResponse/Redirect.php
  85. library/XenForo/ControllerResponse/Abstract.php
  86. library/XenForo/Helper/Cookie.php
  87. library/XenForo/ViewRenderer/HtmlPublic.php
  88. library/XenForo/ViewRenderer/Abstract.php
  89. library/XenForo/Template/Public.php
  90. library/XenForo/Template/Abstract.php
  91. library/WidgetFramework/Core.php
  92. library/XenForo/Model/Moderator.php
  93. library/WidgetFramework/Model/Widget.php
  94. library/WidgetFramework/Helper/Sort.php
  95. library/XenForo/Debug.php