Page Time: 0.1573s

Memory: 5.3554 MB (Peak: 5.9292 MB)

Queries (27, time: 0.0360s, 22.9%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000444
    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,
    		IF(rate.count IS NULL, 0, rate.count) AS thread_rate_count, IF(rate.sum IS NULL, 0, rate.sum) AS thread_rate_sum, IF(rate.avg IS NULL, 0, rate.avg) AS thread_rate_avg
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN ns_threadrating_rate AS rate ON (rate.thread_id = thread.thread_id)
    WHERE thread.thread_id = ?
    Params: 12483
    Run Time: 0.000978
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const0Unique row not found
  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: 23
    Run Time: 0.000526
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. 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
    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))
    WHERE post.thread_id = ?
    	 AND (post.position >= 60 AND post.position < 80) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 12483
    Run Time: 0.003669
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 20Using index condition; Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22user_nextstagerussia.post.user_id,func1Using where
  5. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 12483
    Run Time: 0.000316
  6. 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=12483&page=4, 1714853508,
    Run Time: 0.000363
  7. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 282628, a:1:{i:0;s:70:"GeForce 8800 GT и высше. ATI Radeon x1950 или Radeon HD 3870.";}, 1701116101, 1714853508
    Run Time: 0.001422
  8. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 282675, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:31:"VIncent_Valentine, post: 282628";s:8:"original";a:2:{i:0;s:41:"[quote="VIncent_Valentine, post: 282628"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:30:"GeForce 8800 GT и высше.";}}i:1;s:198:" А не сильно круто? Для кина разницы между 8500ГТ и 8800ГТ особой не будет, а вот по цене раза в 3 дороже обойдется.";}, 1701116101, 1714853508
    Run Time: 0.000396
  9. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 282702, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:31:"VIncent_Valentine, post: 282628";s:8:"original";a:2:{i:0;s:41:"[quote="VIncent_Valentine, post: 282628"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:16:"ATI Radeon x1950";}}i:1;s:283:" Такая не пойдет. Еще раз повторюсь для фильмов, и только для них подойдет ЛЮБАЯ видеокарта начиная с GeForce 8 (кроме 8800gtx и 8800gts 320\640 mb) а также Radeon начиная с 3XXX.";}, 1701116101, 1714853508
    Run Time: 0.000359
  10. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 282746, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"The REAL, post: 282675";s:8:"original";a:2:{i:0;s:32:"[quote="The REAL, post: 282675"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:21:" 8500ГТ и 8800ГТ";}}i:1;s:101:" Есть промежутоноый вариант - новый монстр нВидии - 9600GT.";}, 1701116101, 1714853508
    Run Time: 0.001241
  11. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 1289, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:31:"https://psnprofiles.com/dikh_ru";s:8:"original";a:2:{i:0;s:37:"[URL=https://psnprofiles.com/dikh_ru]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:42:"https://card.psnprofiles.com/1/dikh_ru.png";}}}}}, 1701116101, 1714853508
    Run Time: 0.000377
  12. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 282862, a:1:{i:0;s:99:"ага, и который у нас продают практически по цене 8800ГТ)))";}, 1701116101, 1714853508
    Run Time: 0.000249
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 282871, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"The REAL, post: 282862";s:8:"original";a:2:{i:0;s:32:"[quote="The REAL, post: 282862"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:99:"ага, и который у нас продают практически по цене 8800ГТ)))";}}i:1;s:196:" У нас можно найти за 4200р, правда и 8800гт тоже не далеко ушел, но там разброс цен больше. Можно и за 9000р найти.";}, 1701116101, 1714853508
    Run Time: 0.000258
  14. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 282896, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:23:"Strange_R, post: 282871";s:8:"original";a:2:{i:0;s:33:"[quote="Strange_R, post: 282871"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:46:"У нас можно найти за 4200р...";}}i:1;s:97:" для сравнения написал бы за сколько можно найти 8500 :D";}, 1701116101, 1714853508
    Run Time: 0.000369
  15. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 282950, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"The REAL, post: 282896";s:8:"original";a:2:{i:0;s:32:"[quote="The REAL, post: 282896"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:95:"для сравнения написал бы за сколько можно найти 8500 :D";}}i:1;s:15:" 1500-2500р";}, 1701116101, 1714853508
    Run Time: 0.003583
  16. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 283364, a:1:{i:0;s:77:"Не советую брать 8600 GT. Потом жалеть будете.";}, 1701116101, 1714853508
    Run Time: 0.000802
  17. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 283448, a:1:{i:0;s:237:"VIncent_Valentine, потом это когда??? Взял год назад 8600 GT, отличная видеокарта по цене\производительности. Конечно через год и она устареет.";}, 1701116101, 1714853508
    Run Time: 0.000937
  18. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 283687, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"The REAL, post: 283448";s:8:"original";a:2:{i:0;s:32:"[quote="The REAL, post: 283448"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:238:"VIncent_Valentine, потом это когда??? Взял год назад 8600 GT, отличная видеокарта по цене\производительности. Конечно через год и она устареет.";}}i:1;s:554:" Брал так же год назад, остался жутко недоволен, за те же деньги мог взять X1950pro, что гораздо лучше. Заменил ее как только смог на 9600gt. Что сказать, земля и небо. Настоящий middle-end. А 8600gt (у меня с пасивным охлаждением) поставлю в медиацентр. Кстати даже сейчас добавив 2-3 тыс руб можно вместо 8600 купить 9600. Вывод?";}, 1701116101, 1714853508
    Run Time: 0.008380
  19. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 283690, a:1:{i:0;s:285:"скачал гитс в 1080п, у меня на п4 2,5гГц,2 гига оперы и гф4 4800ти он летает в mplayer,во всех остальных дикий лаг :) так что в таком позёрском разрешении только им смотрю";}, 1701116101, 1714853508
    Run Time: 0.000415
  20. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 283767, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:23:"Strange_R, post: 283687";s:8:"original";a:2:{i:0;s:33:"[quote="Strange_R, post: 283687"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:552:"Брал так же год назад, остался жутко недоволен, за те же деньги мог взять X1950pro, что гораздо лучше. Заменил ее как только смог на 9600gt. Что сказать, земля и небо. Настоящий middle-end. А 8600gt (у меня с пасивным охлаждением) поставлю в медиацентр. Кстати даже сейчас добавив 2-3 тыс руб можно вместо 8600 купить 9600. Вывод?";}}i:1;s:113:" Вывод? Лично мне надо было брать 8500ГТ :D Видимо я не PC-геймер )))";}, 1701116101, 1714853508
    Run Time: 0.000358
  21. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 283788, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"The REAL, post: 283767";s:8:"original";a:2:{i:0;s:32:"[quote="The REAL, post: 283767"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:109:"Вывод? Лично мне надо было брать 8500ГТ Видимо я не PC-геймер )))";}}i:1;s:386:" Да, видюху надо брать по потребностям. Они в компе устаревают быстрее всего. Вот список и примерная стоимость видеокарт для просмотра HD: GeForce 8400gs - 850р GeForce 8500gt - 1400р Radeon HD 3450 - 950р Остальные имхо нет смысла брать.";}, 1701116101, 1714853508
    Run Time: 0.000363
  22. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 284108, a:1:{i:0;s:245:"Вот счас глянул в магазе - Palit Sonic GF 8600GT 256Mb DDR3 128bit DVI PCI-E - 1973руб. Но мне кажется, если смотерть на телеке, то лучше иметь hdmi выход на карте?";}, 1701116101, 1714853508
    Run Time: 0.001031
  23. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 284209, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:18:"dikh, post: 284108";s:8:"original";a:2:{i:0;s:28:"[quote="dikh, post: 284108"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:245:"Вот счас глянул в магазе - Palit Sonic GF 8600GT 256Mb DDR3 128bit DVI PCI-E - 1973руб. Но мне кажется, если смотерть на телеке, то лучше иметь hdmi выход на карте?";}}i:1;s:120:" Не обязательно. Смотря какие входы на телике. Что у тебя там есть?";}, 1701116101, 1714853508
    Run Time: 0.006183
  24. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 284227, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:23:"Strange_R, post: 284209";s:8:"original";a:2:{i:0;s:33:"[quote="Strange_R, post: 284209"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:118:"Не обязательно. Смотря какие входы на телике. Что у тебя там есть?";}}i:1;s:288:" Пака телека та и нет. ДУмаю покупить 36`, спецально для компа. HDMI там точно будет. Счас тока надо выяснить, номарльно ли все игры для писюка поддерживают 13ХХх768";}, 1701116101, 1714853508
    Run Time: 0.001261
  25. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 284356, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:18:"dikh, post: 284227";s:8:"original";a:2:{i:0;s:28:"[quote="dikh, post: 284227"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:286:"Пака телека та и нет. ДУмаю покупить 36`, спецально для компа. HDMI там точно будет. Счас тока надо выяснить, номарльно ли все игры для писюка поддерживают 13ХХх768";}}i:1;s:1697:" Ясно, могу сказать на собственном опыте, так как я подключал тв через разные интерфейсы. Ситуация такая: можно подключить 2-мя способами 1) через компонент 2) через dvi\hdmi\vga Если подключать через компонент проблем с играми не будет, в принципе у меня все работали. Небольшие траблы могут возникнуть с настройкой, изображение вылезает за края экрана, но все это регулируется. Тут разрешение соответствует HDTV (720 или 1080, а также SDTV). Если использовать vga (у меня так) то работает только разрешение которое поддерживает сам телевизор (нужно смотреть инструкцию конкретной модели). У меня стоит 1366x768.:D С современных играх проблем не должно быть. В принципе я думаю подключать можно любым способом, главное смотреть по деньгам и наличию разьемов. За HDMI гнаться не надо, в крайнем случае, есть переходник DVI-HDMI. Видеокарту лучше другую присмотри, особенно для игр:) 36 вроде нет таких, 32, 37, 40, 42. Кстати сейчас можно 42 взять в пределах 35тыс р.";}, 1701116101, 1714853508
    Run Time: 0.000832
  26. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 564324, a:1:{i:0;s:560:"Скажите пожалуйста, будет ли видна разница при просмотре видео 720р и 1080р на мониторе 1600х900 при VGA подключении, если не брать во внимание черные полосы в 720р? В 1080р тоже картинка не везде идёт на весь экран, но битрейт всегда выше минимум в 2 раза, чем в 720р. Интересна разница в детализации и артефактах на экране?";}, 1701116101, 1714853508
    Run Time: 0.000519
  27. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 564344, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"gavrich2, post: 564324";s:8:"original";a:2:{i:0;s:32:"[quote="gavrich2, post: 564324"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:197:"Скажите пожалуйста, будет ли видна разница при просмотре видео 720р и 1080р на мониторе 1600х900 при VGA подключении";}}i:1;s:269:" Я не вижу разницы на мониторе 1920х1080. 99% фильмов у меня в 720р, и я не вижу смысла тратить больше дискового пространства для 1080р, если разницы не видно.";}, 1701116101, 1714853508
    Run Time: 0.000394

Included Files (112, XenForo Classes: 62)

  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/NextStage/Feature/Listener/Feature.php
  29. library/XenForo/Router.php
  30. library/XenForo/Route/Filter.php
  31. library/XenForo/Route/Interface.php
  32. library/XenForo/Route/ResponseSuffix.php
  33. library/XenForo/Route/Prefix.php
  34. library/XenForo/Route/Prefix/Threads.php
  35. library/XenForo/RouteMatch.php
  36. library/XenForo/ControllerPublic/Thread.php
  37. library/XenForo/ControllerPublic/Abstract.php
  38. library/XenForo/Controller.php
  39. library/NextStage/ThreadRating/Listener/Class.php
  40. library/NextStage/TaigaChat/Listener.php
  41. library/NextStage/XenForo/Listener/XenForo.php
  42. library/Tapatalk/Listener/LoadClassModel.php
  43. library/NextStage/ThreadRating/ControllerPublic/Thread.php
  44. library/NextStage/XenForo/ControllerPublic/XenForo.php
  45. library/NextStage/XenForo/ControllerPublic/Thread.php
  46. library/XenForo/Input.php
  47. library/XenForo/Session.php
  48. library/Zend/Db.php
  49. library/Zend/Db/Adapter/Mysqli.php
  50. library/Zend/Db/Adapter/Abstract.php
  51. library/Zend/Db/Select.php
  52. library/Zend/Db/Expr.php
  53. library/Zend/Db/Profiler.php
  54. library/Zend/Db/Statement/Mysqli.php
  55. library/Zend/Db/Statement.php
  56. library/Zend/Db/Statement/Interface.php
  57. library/XenForo/Helper/Ip.php
  58. library/XenForo/Visitor.php
  59. library/XenForo/Model/User.php
  60. library/Dark/TaigaChat/EventListener/Listener.php
  61. library/Zend/Db/Profiler/Query.php
  62. library/XenForo/Permission.php
  63. library/XenForo/Helper/Php.php
  64. library/XenForo/Phrase.php
  65. library/XenForo/Locale.php
  66. library/XenForo/ControllerHelper/ForumThreadPost.php
  67. library/XenForo/ControllerHelper/Abstract.php
  68. library/XenForo/Model/Thread.php
  69. library/NextStage/ThreadRating/Model/Thread.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Helper/Discussion.php
  73. library/XenForo/Model/Post.php
  74. library/NextStage/Feature/Model/Post.php
  75. library/NextStage/Feature/Model/Feature.php
  76. library/XenForo/Model/Attachment.php
  77. library/XenForo/Model/Node.php
  78. library/Tapatalk/Model/Node.php
  79. library/XenForo/Route/Prefix/Categories.php
  80. library/XenForo/Route/Prefix/Forums.php
  81. library/XenForo/ControllerResponse/View.php
  82. library/XenForo/ControllerResponse/Abstract.php
  83. library/XenForo/Helper/Cookie.php
  84. library/Tapatalk/Listener/ControllerPostDispatch.php
  85. library/XenForo/ViewRenderer/HtmlPublic.php
  86. library/XenForo/ViewRenderer/Abstract.php
  87. library/XenForo/Template/Public.php
  88. library/XenForo/Template/Abstract.php
  89. library/XenForo/ViewPublic/Thread/View.php
  90. library/XenForo/ViewPublic/Base.php
  91. library/XenForo/View.php
  92. library/XenForo/BbCode/Parser.php
  93. library/XenForo/BbCode/Formatter/Base.php
  94. library/XenForo/ViewPublic/Helper/Message.php
  95. library/XenForo/BbCode/TextWrapper.php
  96. library/XenForo/Route/Prefix/Members.php
  97. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  98. library/NextStage/ThreadRating/Listener/Template.php
  99. library/XenForo/Template/FileHandler.php
  100. library/XenForo/Helper/File.php
  101. internal_data/templates/S.1,L.1,thread_view.php
  102. library/Tapatalk/EventListener/Hook.php
  103. internal_data/templates/S.1,L.1,page_nav.php
  104. library/Tapatalk/Listener/TemplatePostRender.php
  105. library/XenForo/Route/Prefix/Posts.php
  106. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  107. library/XenForo/Model/Avatar.php
  108. internal_data/templates/S.1,L.1,bb_code_tag_quote.php
  109. library/XenForo/Debug.php
  110. internal_data/templates/S.1,L.1,PAGE_CONTAINER.php
  111. mobiquo/smartbanner/head.inc.php
  112. library/XenForo/ViewRenderer/Json.php