乐于分享
好东西不私藏

代理驾驭框架工程:OpenClaw vs Hermes

代理驾驭框架工程:OpenClaw vs Hermes

在 2026 年大语言模型向自主智能体(Autonomous Agents)演进的工业化进程中,技术界的共识正发生深刻迁移:智能体的性能瓶颈不再仅仅取决于底层的推理模型权重,而更多地取决于围绕模型构建的软件基础设施——驾驭框架(Harness)

正如英伟达(NVIDIA)首席执行官黄仁勋在 2026 年 GTC 大会上所言,驾驭框架工程(Harness Engineering)是决定 AI 能否从“对话框”走向“操作系统”的关键外骨骼。为了系统化地评估当前开源社区最顶尖的两个智能体系统——OpenClaw(原名 Clawdbot 与 Moltbot)与 Hermes Agent(由 Nous Research 开发),本研究采用 Lychee Technology 的“7 层驾驭框架栈 (7-Layer Harness Stack)”作为统一分析框架,揭示其在界面、身份、策略、编排、执行、记忆及推理层面的架构逻辑与商业应用潜力。

1. 界面层 (Interface Layer):多模态归一化与交互网关

界面层作为驾驭框架栈的最外层,承担着信号采集、协议转换与用户触达的核心职能。

  • OpenClaw 的“网关模式”:OpenClaw 采用极度中心化的设计。其网关组件运行在默认的 18789 端口上,作为 WebSocket 服务器处理来自全球 50 多个通信平台的并发请求,包括 iMessage、Discord、Slack、Telegram 以及国内的飞书、企业微信等。其核心技术在于“输入归一化”,通过适配器将异构信号(如语音、富文本、媒体附件)转化为统一的消息对象,确保推理层无需感知物理渠道的差异。

  • Hermes Agent 的“运行环境”特征:Hermes 虽然也支持多社交平台,但其核心竞争力在于深度集成的终端用户界面(TUI)和 ACP(Agent Client Protocol)协议。这使得 Hermes Agent 能够直接嵌入 Zed、JetBrains 或 VS Code 等主流代码编辑器,将“界面”从聊天扩展到了生产力软件的上下文。

在实时反馈方面,OpenClaw 利用分块处理剥离推理模型产生的 <think> 标签;而 Hermes 则通过动态加载器提供实时反馈,实现“思考透明化”。

2. 身份层 (Identity Layer):从静态配置向动态建模的跨越

身份层赋予智能体“灵魂”。Hermes Agent 强化了 SOUL.md 作为首席身份文件的地位,标志着人格一致性进入了“基准提示词驱动”阶段。

2.1 SOUL.md:智能体的持久基准

  • OpenClaw 的层级路由模式:基于 IDENTITY.md 元数据的中心化路由逻辑。它更像是一个具备 RBAC 能力的代理网关,将不同任务映射到预定义的静态身份上。

  • Hermes 的原生注入逻辑SOUL.md 是会话中的第一槽位系统提示词,具有全局效力,确保了跨会话语气、价值观和风格的稳定性。此外,框架具备自引导能力,若未检测到身份文件会自建模板。

2.2 基于 Profile 的身份隔离机制

为了解决“人格污染”问题,Hermes 引入了 Profiles 系统:

  • 角色去污染:每个 Profile 拥有独立的 SOUL.md,不同角色间的逻辑判断互不干扰。

  • 运行时物理隔离:这种隔离延伸至记忆数据库和凭证池。通过切换命令,驾驭框架可以瞬间完成从“企业审计员”到“私人助理”的完全热切换。

3. 策略层 (Policy Layer):安全性约束与执行红线

策略层是驾驭框架栈的“免疫系统”,确保智能体行为不超越安全红线。

  • OpenClaw 的硬约束:早期曾曝出漏洞,随后引入了基于“指令允许列表”的硬约束,只有预定义命令(如 npm、git)可执行,并通过解析 Shell 结构阻断重定向操作,防止覆盖关键系统文件。

  • Hermes Agent 的“防御性设计”:采用七层安全模型,核心是名为“Tirith”的预执行扫描器。它支持“模型审计模型”机制,由轻量级辅助模型(如 Gemini Flash)进行语义层面的意图审计。同时,具备自动脱敏功能,能实时抹除输出流中的 API 密钥等敏感信息。

在隔离技术上,两者均映射到 Docker 级沙箱,但 Hermes 提供了更灵活的后端支持,包括 Singularity(适用于 HPC 环境)和 Modal(适用于无服务器 GPU 场景)。

4. 编排层 (Orchestration Layer):思维循环与迭代控制

编排层负责驱动智能体循环,将复杂目标拆解为原子化的思维步进。

  • OpenClaw 的“车道队列”:每一个会话映射为一个独立的“车道”,编排器通过串行化执行保证状态一致性,防止并发操作导致竞态条件,确保特定代理的思维链路不会交织。

  • Hermes Agent 的递归循环:核心是同步递归循环,通过 IterationBudget 严格控制迭代成本。当接近上限时,系统会隐式注入“预算不足”警告,引导模型尽快收敛。此外,支持“子代理委派”,将主规划与具体实现并行化。

在上下文控制上,OpenClaw 会在窗口溢出前强行触发摘要或停止循环;Hermes 则使用“预检压缩”策略,自动调用辅助模型进行语义压缩。

5. 执行层 (Execution Layer):确定性管道与自主技能演化

执行层是推理转化为现实影响的物理边界。

  • OpenClaw 的 Lobster 引擎:实现了从概率行为向确定性自动化的跨越。它允许将多步任务封装为 YAML 或 JSON 定义的硬逻辑管道(如每日财务简报流程),完全消除了推理延迟,降低了 Token 消耗并保证了 100% 的可预测性。

  • Hermes Agent 的“闭环学习系统”:赋予了代理“自我编写代码库”的能力。执行层逻辑分为四个阶段:

    1. 执行:利用内置工具完成任务。

    2. 评估:分析执行轨迹成功率。

    3. 创建:若任务序列具通用性,自主总结为符合标准的技能文档。

    4. 演化:后续任务中优先通过语义搜索加载自建技能。

6. 记忆层 (Memory Layer):分层存储与 Token 经济学

记忆层负责管理智能体的时空连续性,防止“认知断层”。

  • OpenClaw 的分层锚点架构 (TGAA):将核心身份规则固定在“顶部锚点”,并对历史会话进行滑动窗口处理以提高缓存命中率。同时引入“语义快照”技术,通过抓取网页的可访问性树而非截屏,极大地降低了网页记忆的 Token 成本。

  • Hermes Agent 的“金字塔结构”

    1. 工作记忆:RAM 存储,实时上下文。

    2. 情节记忆:基于 SQLite 的全文搜索,记录历史轨迹。

    3. 程序记忆:独立存储的技能库(Skills),代表知识固化。 系统引入了“定期推送”机制,后台静默唤醒模型整理记忆,确保高信息密度。

7. 推理层 (Reasoning Layer):模型路由与强化学习反馈

推理层位于栈的最底部,是所有逻辑决策的源头。

  • OpenClaw 的 Pi SDK:通过抽象层实现对不同提供商(Anthropic、Google、DeepSeek)的透明兼容。核心功能是“故障转移”,当主模型受限或报错时,自动切换备用模型,确保任务连续。

  • Hermes Agent 的 RL 管道:不仅是执行环境,还是“轨迹生成器”。它将成功的调用序列记录为训练数据,利用强化学习进行优化。其推理层还集成了针对特定模型的“微调适应器”,提升高精度逻辑任务(如代码调试)的表现。

8. 深度架构透视:确定性控制与演化式自治的博弈

8.1 OpenClaw:基于“控制平面”的工业化路线

OpenClaw 强调权限的集中控制与可审计性,多代理路由类似组织架构图。这使其成为构建企业级、角色严密的 AI 职员体系的首选。

8.2 Hermes Agent:基于“演化闭环”的单兵进化路线

Hermes 的框架是一个“实验室”,通过闭环学习系统将失败转化为技能。这种“复利效应”使其适合需要高度定制化的场景(如高级工程辅助或科研助手)。虽然在多租户隔离上稍显逊色,但在“全能专家”的进化能力上具有显著优势。

8.3 二阶洞察:Token 经济学

2026 年的设计趋势向“零注入”演进,即尽可能通过外部 RAG 和热切换提示词来降低推理层的常态负荷。OpenClaw 的静态模式容易挤压推理空间,而 Hermes 的“渐进式披露”缓解了矛盾,但带来了索引延迟。

9. 未来展望:从驾驭框架对立走向协议融合

随着 2026 年末技术的收敛,OpenClaw 与 Hermes Agent 之间的界限正变得模糊。通过官方迁移工具,用户已能实现底层数据的交换。OpenClaw 社区也在引入“自我学习”插件复刻技能演化机制。

最终,开发者可能更多是依据其它限制条件而不是功能本身,例如部署环境限制(OpenClaw node依赖起步200GB)或原有的技术栈OpenClaw js 系 vs Hermes python系进行选型。我个人更倾向于Hermes因为python更适合系统缝合与数据工作,适合作为主导企业AI而不是个人AI的框架-

参见。

压力式嘚嘚,公众号:系统之美AI 范式大辩论:企业级AI vs 个人AI助手

Works cited

  1. Agent Harness for Large Language Model Agents: A Surveyv2v2| Preprints.org, accessed April 18, 2026, https://www.preprints.org/manuscript/202604.0428
  2. Everything That Happened in AI This Week (Mar 8–13, 2026) - The Neuron, accessed April 18, 2026, https://www.theneuron.ai/ai-news-digests/around-the-horn-digest-everything-that-happened-in-ai-this-week-mar-813-2026/
  3. What Is OpenClaw? Why Developers Are Obsessed With This AI Agent, accessed April 18, 2026, https://www.clarifai.com/blog/what-is-openclaw/
  4. Hermes Agent Tutorial: Install & Set Up Your First Self-Improving AI (2026) | NxCode, accessed April 18, 2026, https://www.nxcode.io/resources/news/hermes-agent-tutorial-install-setup-first-agent-2026
  5. The Ultimate Guide to OpenClaw Architecture in 2026 - Skywork, accessed April 18, 2026, https://skywork.ai/skypage/en/openclaw-architecture-guide/2036393045240942592
  6. OpenClaw: The AI Agent That Burns Through Your API Budget (And ..., accessed April 18, 2026, https://medium.com/@reza.ra/openclaw-the-ai-agent-that-burns-through-your-api-budget-and-how-to-fix-it-050fc57552c9
  7. Deploy OpenClaw on AWS or Hetzner Securely with Pulumi and Tailscale, accessed April 18, 2026, https://www.pulumi.com/blog/deploy-openclaw-aws-hetzner/
  8. Hermes Agent vs OpenClaw: Personal Super-Agent Infrastructure Compared (2026), accessed April 18, 2026, https://pickaxe.co/post/hermes-agent-vs-openclaw
  9. OpenClaw security: architecture and hardening guide - Nebius, accessed April 18, 2026, https://nebius.com/blog/posts/openclaw-security
  10. How OpenClaw Works: Understanding AI Agents Through a Real Architecture, accessed April 18, 2026, https://bibek-poudel.medium.com/how-openclaw-works-understanding-ai-agents-through-a-real-architecture-5d59cc7a4764
  11. Hermes Agent vs OpenClaw in 2026: Deep Analysis of Runtime, Memory, and Agent Design, accessed April 18, 2026, https://docs.kanaries.net/articles/hermes-agent-vs-openclaw
  12. Hermes Agent Documentation, accessed April 18, 2026, https://hermes-agent.nousresearch.com/docs/
  13. AI 101: Hermes Agent – OpenClaw's Rival? Differences and Best Use Cases - Turing Post, accessed April 18, 2026, https://www.turingpost.com/p/hermes
  14. Architecture - Hermes Agent - Mintlify, accessed April 18, 2026, https://www.mintlify.com/NousResearch/hermes-agent/developer-guide/architecture
  15. Hermes Agent: The Self-Improving AI That Just Blew My Mind - Medium, accessed April 18, 2026, https://medium.com/@ishank.iandroid/hermes-agent-the-self-improving-ai-that-just-blew-my-mind-11fcfec8c30e
  16. Feature: Agent Client Protocol (ACP) Server Mode — Run Hermes in Zed, JetBrains, Neovim, Toad & Any ACP-Compatible Editor #569 - GitHub, accessed April 18, 2026, https://github.com/NousResearch/hermes-agent/issues/569
  17. RPC Mode for Programmatic Integration & Model Hot-Swapping (inspired by Pi) · Issue #360 · NousResearch/hermes-agent · GitHub, accessed April 18, 2026, https://github.com/NousResearch/hermes-agent/issues/360
  18. Pi Integration Architecture - OpenClaw, accessed April 18, 2026, https://docs.openclaw.ai/pi
  19. Agent Loop - OpenClaw Docs, accessed April 18, 2026, https://docs.openclaw.ai/concepts/agent-loop
  20. Architecture | Hermes Agent - nous research, accessed April 18, 2026, https://hermes-agent.nousresearch.com/docs/developer-guide/architecture
  21. Paperclip: The Open-Source Operating System for Zero-Human Companies - Towards AI, accessed April 18, 2026, https://pub.towardsai.net/paperclip-the-open-source-operating-system-for-zero-human-companies-2c16f3f22182
  22. Skills - OpenClaw Docs, accessed April 18, 2026, https://docs.openclaw.ai/tools/skills
  23. Hermes Agent: Self-Improving AI with Persistent Memory | YUV.AI Blog, accessed April 18, 2026, https://yuv.ai/blog/hermes-agent
  24. Hermes Agent + Honcho - Honcho, accessed April 18, 2026, https://docs.honcho.dev/v3/guides/integrations/hermes
  25. What Is Hermes Agent? The OpenClaw Alternative with a Built-In Learning Loop, accessed April 18, 2026, https://www.mindstudio.ai/blog/what-is-hermes-agent-openclaw-alternative
  26. Hermes Agent: A Self-Evolving AI Agent - Wcowin's Blog, accessed April 18, 2026, https://wcowin.work/develop/AI/hermes-agent/
  27. OpenClaw Architecture Diagram (2026) Explained - Valletta Software, accessed April 18, 2026, https://vallettasoftware.com/blog/post/openclaw-architecture-diagram-2026
  28. Hermes Agent vs OpenClaw: Which AI Agent Runtime Should You Choose? - Userorbit, accessed April 18, 2026, https://userorbit.com/blog/hermes-agent-vs-openclaw
  29. Hermes Agent vs OpenClaw: Which AI Agent Should You Choose for Real Work?, accessed April 18, 2026, https://powerdrill.ai/blog/hermes-agent-vs-openclaw-which-ai-agent-should-you-choose-for-real-work
  30. Running OpenClaw safely: identity, isolation, and runtime risk | Microsoft Security Blog, accessed April 18, 2026, https://www.microsoft.com/en-us/security/blog/2026/02/19/running-openclaw-safely-identity-isolation-runtime-risk/
  31. How Autonomous Ai Agents Like Openclaw are Reshaping Enterprise Identity Security - Palo Alto Networks Blog, accessed April 18, 2026, https://www.paloaltonetworks.com/blog/identity-security/how-autonomous-ai-agents-like-openclaw-are-reshaping-enterprise-identity-security/
  32. OpenClaw Architecture Guide | High-Reliability AI Agent Framework - Vertu, accessed April 18, 2026, https://vertu.com/ai-tools/openclaw-clawdbot-architecture-engineering-reliable-and-controllable-ai-agents/
  33. Security | Hermes Agent - nous research, accessed April 18, 2026, https://hermes-agent.nousresearch.com/docs/user-guide/security
  34. Security - Hermes Agent - Mintlify, accessed April 18, 2026, https://www.mintlify.com/NousResearch/hermes-agent/user-guide/security
  35. Feature: Inline Security Risk Self-Annotation — Zero-Cost LLM-Assessed Command Safety · Issue #577 · NousResearch/hermes-agent - GitHub, accessed April 18, 2026, https://github.com/NousResearch/hermes-agent/issues/577
  36. Security - NousResearch/hermes-agent - GitHub, accessed April 18, 2026, https://github.com/NousResearch/hermes-agent/security
  37. Hermes Agent: A Self-Improving AI Agent That Runs Anywhere - DEV Community, accessed April 18, 2026, https://dev.to/arshtechpro/hermes-agent-a-self-improving-ai-agent-that-runs-anywhere-2b7d
  38. Hermes Agent: The Self-Improving AI Agent That Learns From Every Task - webvise, accessed April 18, 2026, https://webvise.io/blog/hermes-agent-self-improving-ai
  39. Don't Let AI Agents YOLO Your Files: Shifting Information and Control to Filesystems for Agent Safety and Autonomy - arXiv, accessed April 18, 2026, https://arxiv.org/pdf/2604.13536
  40. Architecture - Hermes Agent - Mintlify, accessed April 18, 2026, https://mintlify.com/NousResearch/hermes-agent/developer-guide/architecture
  41. Agent Loop Internals | Hermes Agent - nous research, accessed April 18, 2026, https://hermes-agent.nousresearch.com/docs/developer-guide/agent-loop
  42. Hermes Agent 2026: The Self-Improving Open-Source AI Agent Outpacing OpenClaw - AI.cc, accessed April 18, 2026, https://www.ai.cc/blogs/hermes-agent-2026-self-improving-open-source-ai-agent-vs-openclaw-guide/
  43. Lobster - OpenClaw Docs, accessed April 18, 2026, https://docs.openclaw.ai/tools/lobster
  44. lobster/VISION.md at main · openclaw/lobster - GitHub, accessed April 18, 2026, https://github.com/openclaw/lobster/blob/main/VISION.md
  45. lobster-jobs | Skills Marketplace - LobeHub, accessed April 18, 2026, https://lobehub.com/skills/openclaw-skills-lobster-jobs
  46. Feature: New cron kind `exec`/`lobster` — run pipelines without LLM, trigger agent only on condition · Issue #29907 - GitHub, accessed April 18, 2026, https://github.com/openclaw/openclaw/issues/29907
  47. Skills System | Hermes Agent - nous research, accessed April 18, 2026, https://hermes-agent.nousresearch.com/docs/user-guide/features/skills
  48. Adding tools - Hermes Agent - Mintlify, accessed April 18, 2026, https://mintlify.com/NousResearch/hermes-agent/developer-guide/adding-tools
  49. Hermes Agent Guide: Beyond OpenClaw, Boosting Productivity by 100 Times | Odaily星球日报 on Binance Square, accessed April 18, 2026, https://www.binance.com/en/square/post/312090900924370
  50. The Ultimate Guide to OpenClaw Lobster: Features, Alternatives, and Future Trends - Skywork, accessed April 18, 2026, https://skywork.ai/skypage/en/openclaw-lobster-guide/2037014641565765632
  51. VoltAgent/awesome-openclaw-skills - GitHub, accessed April 18, 2026, https://github.com/VoltAgent/awesome-openclaw-skills
  52. Skills system - Hermes Agent - Mintlify, accessed April 18, 2026, https://mintlify.com/NousResearch/hermes-agent/user-guide/features/skills
  53. A curated list of awesome skills, tools, integrations, and resources for Hermes Agent by Nous Research - GitHub, accessed April 18, 2026, https://github.com/0xNyk/awesome-hermes-agent
  54. Hermes Self Evolving AI Agent Keeps Learning From Your Work : r/AISEOInsider - Reddit, accessed April 18, 2026, https://www.reddit.com/r/AISEOInsider/comments/1s7ffmr/hermes_self_evolving_ai_agent_keeps_learning_from/
  55. What Is Hermes Agent? - Tencent Cloud, accessed April 18, 2026, https://www.tencentcloud.com/techpedia/143930
  56. Hermes Agent Persistent Memory Changes How AI Learns Your Workflow - Reddit, accessed April 18, 2026, https://www.reddit.com/r/AISEOInsider/comments/1s9emaa/hermes_agent_persistent_memory_changes_how_ai/
  57. I looked into Hermes Agent architecture to dig some details : r/LocalLLM - Reddit, accessed April 18, 2026, https://www.reddit.com/r/LocalLLM/comments/1scglgq/i_looked_into_hermes_agent_architecture_to_dig/
  58. RL Training | Hermes Agent, accessed April 18, 2026, https://hermes-agent.nousresearch.com/docs/user-guide/features/rl-training
  59. Nous Research Hermes Agent: Setup and Tutorial Guide - DataCamp, accessed April 18, 2026, https://www.datacamp.com/tutorial/hermes-agent
  60. NousResearch/hermes-agent-self-evolution - GitHub, accessed April 18, 2026, https://github.com/NousResearch/hermes-agent-self-evolution
  61. Code Execution | Hermes Agent, accessed April 18, 2026, https://hermes-agent.nousresearch.com/docs/user-guide/features/code-execution
  62. CVE-2026-27007: OpenClaw Config Integrity Vulnerability - SentinelOne, accessed April 18, 2026, https://www.sentinelone.com/vulnerability-database/cve-2026-27007/
  63. OpenClaw vs Hermes Agent: What Reddit Actually Says (2026) | Kilo, accessed April 18, 2026, https://kilo.ai/articles/openclaw-vs-hermes-what-reddit-says
  64. Hermes Agent vs OpenClaw: one is agent-first, the other gateway-first - screenshot API, accessed April 18, 2026, https://screenshotone.com/blog/hermes-agent-versus-openclaw/
  65. OpenClaw vs Hermes Agent - Medium, accessed April 18, 2026, https://medium.com/data-science-in-your-pocket/openclaw-vs-hermes-agent-5eca4021dfb1
  66. Creating Skills | Hermes Agent - nous research, accessed April 18, 2026, https://hermes-agent.nousresearch.com/docs/developer-guide/creating-skills
  67. NousResearch/hermes-agent: The agent that grows with you - GitHub, accessed April 18, 2026, https://github.com/nousresearch/hermes-agent
  68. OnlyTerp/hermes-optimization-guide: Hermes Agent setup, migration, LightRAG, Telegram, and skill creation guide - GitHub, accessed April 18, 2026, https://github.com/OnlyTerp/hermes-optimization-guide
  69. I tried Hermes so you don't have to. : r/openclaw - Reddit, accessed April 18, 2026, https://www.reddit.com/r/openclaw/comments/1se64gt/i_tried_hermes_so_you_dont_have_to/
  70. What Is OpenClaw? A Practical Guide to the Agent Harness Behind the Hype - Zylon Blog, accessed April 18, 2026, https://www.zylon.ai/resources/blog/what-is-openclaw-a-practical-guide-to-the-agent-harness-behind-the-hype
基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-04-20 03:05:51 HTTP/1.1 GET : https://www.yeyulingfeng.com/a/549052.html
  2. 运行时间 : 0.105558s [ 吞吐率:9.47req/s ] 内存消耗:4,883.11kb 文件加载:145
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=75c9e6cf39a04203ff1de0e8dba6fd8a
  1. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/autoload_static.php ( 6.05 KB )
  7. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/ralouphie/getallheaders/src/getallheaders.php ( 1.60 KB )
  10. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  11. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  12. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  13. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  14. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  15. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  16. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  17. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  18. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  19. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/guzzlehttp/guzzle/src/functions_include.php ( 0.16 KB )
  21. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/guzzlehttp/guzzle/src/functions.php ( 5.54 KB )
  22. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  23. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  24. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  25. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/provider.php ( 0.19 KB )
  26. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  27. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  28. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  29. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/common.php ( 0.03 KB )
  30. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  32. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/alipay.php ( 3.59 KB )
  33. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  34. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/app.php ( 0.95 KB )
  35. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/cache.php ( 0.78 KB )
  36. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/console.php ( 0.23 KB )
  37. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/cookie.php ( 0.56 KB )
  38. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/database.php ( 2.48 KB )
  39. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/filesystem.php ( 0.61 KB )
  40. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/lang.php ( 0.91 KB )
  41. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/log.php ( 1.35 KB )
  42. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/middleware.php ( 0.19 KB )
  43. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/route.php ( 1.89 KB )
  44. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/session.php ( 0.57 KB )
  45. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/trace.php ( 0.34 KB )
  46. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/view.php ( 0.82 KB )
  47. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/event.php ( 0.25 KB )
  48. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  49. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/service.php ( 0.13 KB )
  50. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/AppService.php ( 0.26 KB )
  51. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  52. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  53. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  54. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  55. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  56. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/services.php ( 0.14 KB )
  57. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  58. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  59. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  60. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  61. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  62. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  63. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  64. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  65. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  66. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  67. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  68. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  69. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  70. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  71. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  72. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  73. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  74. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  75. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  76. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  77. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  78. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  79. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  80. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  81. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  82. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  83. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  84. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  85. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  86. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  87. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/Request.php ( 0.09 KB )
  88. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  89. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/middleware.php ( 0.25 KB )
  90. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  91. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  92. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  93. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  94. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  95. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  96. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  97. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  98. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  99. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  100. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  101. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  102. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  103. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/route/app.php ( 3.94 KB )
  104. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  105. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  106. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/controller/Index.php ( 9.87 KB )
  108. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/BaseController.php ( 2.05 KB )
  109. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  110. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  111. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  112. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  113. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  114. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  115. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  116. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  117. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  118. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  119. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  120. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  121. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  122. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  123. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  124. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  125. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  126. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  127. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  128. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  129. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  130. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  131. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  132. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  133. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  134. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  135. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/controller/Es.php ( 3.30 KB )
  136. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  137. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  138. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  139. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  140. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  141. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  142. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  143. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  144. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/runtime/temp/c935550e3e8a3a4c27dd94e439343fdf.php ( 31.80 KB )
  145. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000691s ] mysql:host=127.0.0.1;port=3306;dbname=wenku;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000956s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000383s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000269s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000530s ]
  6. SELECT * FROM `set` [ RunTime:0.000196s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000649s ]
  8. SELECT * FROM `article` WHERE `id` = 549052 LIMIT 1 [ RunTime:0.000510s ]
  9. UPDATE `article` SET `lasttime` = 1776625551 WHERE `id` = 549052 [ RunTime:0.004745s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 64 LIMIT 1 [ RunTime:0.000234s ]
  11. SELECT * FROM `article` WHERE `id` < 549052 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000476s ]
  12. SELECT * FROM `article` WHERE `id` > 549052 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.001414s ]
  13. SELECT * FROM `article` WHERE `id` < 549052 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.000646s ]
  14. SELECT * FROM `article` WHERE `id` < 549052 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.003145s ]
  15. SELECT * FROM `article` WHERE `id` < 549052 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.001406s ]
0.109653s