Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 626 Bytes

Composition-Client.md

File metadata and controls

20 lines (13 loc) · 626 Bytes

Core 与 Web 的连接方式解析

简化 ER 图

数据库连接(默认)

  1. Web 插入 Solution 表。
  2. core 轮询 solution 表,发现新记录。
  3. core 更新 solutionresult 等字段
  4. Web 端轮询 soltuion 显示 result 等字段。

HTTP 方式连接

  1. Web 插入 Solution
  2. core 访问 Webadmin/problem_judge.php ,发现新纪录
  3. coreWebadmin/problem_judge.php 提交数据,problem_judge.php 更新 solutionresult 等字段。
  4. Web 端轮询 soltuion 显示 result 等字段。