Page Time: 0.1084s

Memory: 10.5093 MB (Peak: 11.7556 MB)

Queries (13, time: 0.0074s, 6.8%)

  1. 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.000561
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
    Run Time: 0.000163
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000352
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_brivium_addonindex PRIMARY77 1 
  4. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: brBriviumAddOns, a:0:{}
    Run Time: 0.000127
  5. SELECT session_data
    FROM xf_session
    WHERE session_id = ?
    	AND expiry_date >= ?
    Params: df9207205bdaf01f7baaeb259b736318, 1716015083
    Run Time: 0.000175
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_sessionconstPRIMARY,expiry_datePRIMARY34const1 
  6. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000138
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  7. 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: 577474
    Run Time: 0.000628
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  8. 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: 38
    Run Time: 0.000365
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  9. 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,
    		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
    
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		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 >= 0 AND post.position < 10) )
    		
    		
    	)
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 577474
    Run Time: 0.002776
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1Using filesort
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using index condition; Using where
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22xenforo.cc.post.user_id,func1Using where
  10. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 577474
    Run Time: 0.000281
  11. UPDATE `xf_session` SET `expiry_date` = ? WHERE (session_id = 'df9207205bdaf01f7baaeb259b736318')
    Params: 1716018683
    Run Time: 0.000941
  12. 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=577474, 1716015083,
    Run Time: 0.000110
  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, 584433, a:16:{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:80:"https://pic1.zhimg.com/v2-87489dcd40d93afac206ce5c0e7d045a_l.jpg?source=8673f162";}}i:1;s:28:" linyi812,考古工作者 ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:57:"https://www.zhihu.com/question/67031494/answer/2177052034";s:8:"original";a:2:{i:0;s:65:"[URL='https://www.zhihu.com/question/67031494/answer/2177052034']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"阅读原文";}}i:3;s:273:" 碳十四测年的误差有不同的性质。 一种是放射性测量所不可能避免的随机统计误差,也就是发表碳十四数据时一般同时标出该数据的一个标准差的统计误差,由于服从正态分布,如±40 的含义是如果不考虑";i:4;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:12:"其他因素";}}i:5;s:1814:",样品年龄应该有 68%的概率落在宽度为±40 的区间中(同时应该有 95%的概率落在±80 区间、有 99%的概率落在±120 区间)。这是提问者说的百科误差数据的情况,一般来说现在的实验室把标准差控制在正负三四十年是没问题的,早年发表的数据中这种误差会大一些。 问题是,这里的“其他因素”还有很多。有一类碳十四测年的误差,是由于碳十四测年所依赖的假设不完全成立导致的系统误差。比如年龄计算公式假设大气中碳十四同位素的丰度不变,但我们已经知道这只是近似成立,用现代(1950 年)的固定值计算就会出现系统误差,这种误差需要用其他独立的、高精度的定年手段(如树轮或珊瑚铀系年龄)做校正。没有树轮校正的碳十四年代大致会偏年轻,而且年龄越老偏离越大,对于一万年前的样品这种误差可以有一千年之多。所以只有校正过的碳十四年代才有意义。 树轮校正曲线并不是单调变化的,有很多百年或几十年幅度的起伏。曲线在某段的形状会对校正后的误差产生影响(这里所谓误差也是只考虑上述两者而不涉及别的因素),或者说校正后的误差大小取决于年代在树轮曲线上的位置。处于校正曲线上比较缓的位置,校正后误差就会变得比较大;处于校正曲线上比较陡的位置,校正后误差就比较小。提问者说的”出现了 200 年的误差“指的是这种情况,这和设备先进与否或工作人员水平等因素没有关系。如果你明知研究时间段处在校正曲线上的特定位置、会导致校正年代分辨率不足以满足研究需要,此时再做碳十四测年可能就是无用功。 ";i:6;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:83:"https://pic3.zhimg.com/v2-00306ade750d8cbd0d6f9f4a01645f9c_720w.jpg?source=8673f162";}}i:7;s:1137:" 正是由于这段曲线总体上坡度较缓,“所以处于这个区域中,应用单一样品测年,日历年校正误差一般都比较大。这样大的年代误差,无助于历史时期的年代讨论”(图文引自张雪莲 仇士华 蔡莲珍:《郑州商城和偃师商城的碳十四年代分析》,《中原文物》2005 年 1 期)。所以断代工程才引入系列样品的方法,因为系列样品校正后的测年精确度要远远高于单一样品的情况,标准差小到十几年、几年也是可能的。 ———————— 提问者说的 三万年年以内的遗物,年代测定误差范围会超出一万年左右吗?这又是另外的情况。 同一含碳样品中的不同炭质组分可能产生非常不同的年龄,样品总的混合年龄的考古意义可能是含糊的,而有些组分的碳十四年龄可能毫无考古意义,可以视为污染。如果把这个当作误差,那么对于旧石器时代样品,误差当然会超过一万年。 最近就有一个很好的例子,在李辉、孙雪峰等质疑福岩洞人化石年代的文章发表后(";i:8;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:58:"https://www.zhihu.com/question/443750542/answer/1724650496";s:8:"original";a:2:{i:0;s:66:"[URL='https://www.zhihu.com/question/443750542/answer/1724650496']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:104:"PNAS 新研究否定东亚人本地起源说,现代人抵达华南不足六万年,有哪些影响?";}}i:9;s:66:"),该文涉及碳十四年代部分受到了有力的反驳(";i:10;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:81:"http://link.zhihu.com/?target=https%3A//mp.weixin.qq.com/s/F0VLir8dhd7RX9JdYRxH4Q";s:8:"original";a:2:{i:0;s:89:"[URL='http://link.zhihu.com/?target=https%3A//mp.weixin.qq.com/s/F0VLir8dhd7RX9JdYRxH4Q']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:141:"学术争鸣 | “鹿牙”乌龙“人牙” ——对“古 DNA 和多种测年方式证实现代人晚到达中国南方”一文的评论";}}i:11;s:849:")。 很多考古遗址的测年样品来自相对常见的动物骨骼(或牙齿),现在一般认为,只有提取出骨骼中的原生组分—胶原蛋白(或明胶蛋白)进行年代测定才能代表样品真实年龄,而 21 世纪初之前的样品前处理方法并不能排除胶原蛋白之外的其他成分,所发表的测年结果自然也不可靠(即使现在也未必能保证百分之百排除,只是确定比原先的做法能排除更多污染物)。 根据 Higham 的估计,由于现代碳的污染,对于 4 万年前这一时段来说,文献中多达 70%的年代数据可能太年轻,而且有时这种低估是非常严重的。详情可参考 Higham, T. European Middle and Upper Palaeolithic radiocarbon dates are often older than they look: problems with previous dates and some remedies. ";i:12;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:9:"Antiquity";}}i:13;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:2:"85";}}i:14;s:645:", 235–249 (2011).他认为老碳的污染相比于新碳来说微不足道:在一个距今 40000 年的样本中加入 10%的老碳,测得的年代是 40800 BP;而在样本中加入 10%的现代碳,测得的年代是 18000 BP,即使是 0.5%的现代污染也会给出完全扭曲的年龄(35 600 BP)。就国内来说,山顶洞遗址测年的前后变化也可以清晰地显示出前处理技术进步对于年代结果的影响,年代提前两万年对于认识人类历史来说是截然不同的图景。 值得相信的是,科学进步会逐渐减少一些判断的不确定性,一劳永逸的答案不值得相信。 ";i:15;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:39:"https://www.zhihu.com/question/67031494";s:8:"original";a:2:{i:0;s:47:"[URL='https://www.zhihu.com/question/67031494']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"阅读原文";}}}, 1621686945, 1716015083
    Run Time: 0.000772

Included Files (107, XenForo Classes: 61)

  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/Db.php
  19. library/Zend/Db/Adapter/Mysqli.php
  20. library/Zend/Db/Adapter/Abstract.php
  21. library/Zend/Db/Select.php
  22. library/Zend/Db/Expr.php
  23. library/Zend/Db/Profiler.php
  24. library/Zend/Db/Statement/Mysqli.php
  25. library/Zend/Db/Statement.php
  26. library/Zend/Db/Statement/Interface.php
  27. library/Zend/Db/Profiler/Query.php
  28. library/XenForo/CodeEvent.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/XenResource/Listener/Proxy.php
  33. library/XenGallery/Listener.php
  34. library/Brivium/BriviumHelper/EventListeners.php
  35. library/Brivium/BriviumHelper/1000271/EventListeners.php
  36. library/SV/RedisCache/Listener.php
  37. library/BestAnswer/Listener.php
  38. library/SV/RedisCache/XenForo/Model/DataRegistry.php
  39. library/Brivium/BriviumHelper/Model/ListenerClass.php
  40. library/Brivium/BriviumHelper/1000271/Model/ListenerClass.php
  41. library/XenForo/Router.php
  42. library/XenForo/Route/Filter.php
  43. library/XenForo/Route/Interface.php
  44. library/XenForo/Route/ResponseSuffix.php
  45. library/XenForo/Route/Prefix.php
  46. library/XenForo/Route/Prefix/Threads.php
  47. library/XenForo/RouteMatch.php
  48. library/XenForo/ControllerPublic/Thread.php
  49. library/XenForo/ControllerPublic/Abstract.php
  50. library/XenForo/Controller.php
  51. library/BestAnswer/ControllerPublic/Thread.php
  52. library/XenForo/Input.php
  53. library/XenForo/Session.php
  54. library/XenForo/Helper/Ip.php
  55. library/XenForo/Visitor.php
  56. library/XenForo/Model/User.php
  57. library/BestAnswer/Model/User.php
  58. library/XenResource/Listener/Proxy/ModelUser.php
  59. library/XenGallery/Model/User.php
  60. library/XenForo/Permission.php
  61. library/XenForo/Helper/Php.php
  62. library/XenForo/Phrase.php
  63. library/XenForo/Locale.php
  64. library/XenForo/ControllerHelper/ForumThreadPost.php
  65. library/XenForo/ControllerHelper/Abstract.php
  66. library/XenForo/Model/Thread.php
  67. library/SV/RedisCache/XenForo/Model/Thread.php
  68. library/BestAnswer/Model/Thread.php
  69. library/BestAnswer/Model/BestAnswer.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Model/Post.php
  73. library/FreddysHouse/SignatureOnce/Event/LoadClassModel.php
  74. library/BestAnswer/Model/Post.php
  75. library/FreddysHouse/SignatureOnce/Model/Post.php
  76. library/XenForo/Model/Attachment.php
  77. library/XenForo/Model/Node.php
  78. library/XenForo/Route/Prefix/Categories.php
  79. library/XenForo/Route/Prefix/Forums.php
  80. library/XenForo/ControllerResponse/View.php
  81. library/XenForo/ControllerResponse/Abstract.php
  82. library/XenResource/Listener/Template.php
  83. library/XenForo/ViewRenderer/HtmlPublic.php
  84. library/XenForo/ViewRenderer/Abstract.php
  85. library/XenForo/Template/Public.php
  86. library/XenForo/Template/Abstract.php
  87. library/XenForo/ViewPublic/Thread/View.php
  88. library/XenForo/ViewPublic/Base.php
  89. library/XenForo/View.php
  90. library/XenForo/BbCode/Parser.php
  91. library/XenForo/BbCode/Formatter/Base.php
  92. library/XenForo/ViewPublic/Helper/Message.php
  93. library/XenForo/BbCode/TextWrapper.php
  94. library/WhoHasVisited/Listener.php
  95. library/XenForo/Route/Prefix/Members.php
  96. library/XenForo/Template/FileHandler.php
  97. library/XenForo/Helper/File.php
  98. internal_data/templates/S.1,L.7,thread_view.php
  99. library/Brivium/RMDownloadTracker/EventListener/Listener.php
  100. library/XenForo/Route/Prefix/Posts.php
  101. library/XenForo/Model/Avatar.php
  102. library/XenForo/Helper/Criteria.php
  103. library/XenForo/Debug.php
  104. internal_data/templates/S.1,L.7,PAGE_CONTAINER.php
  105. internal_data/templates/S.1,L.7,xengallery_tab_links.php
  106. internal_data/templates/S.1,L.7,resources_tab_links.php
  107. library/XenForo/ViewRenderer/Json.php