feat(tools): XHProf 数据清理任务与定时注册

This commit is contained in:
augushong
2026-08-15 05:47:34 +08:00
parent 7e73902325
commit b472df8c1d
4 changed files with 220 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
<?php
declare(strict_types=1);
namespace app\tools\controller\timer;
use base\tools\controller\timer\XhprofRunCleanBase;
/**
* XHProf 采样数据清理定时任务App 入口类).
*
* 框架路由 /tools/timer.XhprofRunClean/do 与 /tools/timer.XhprofRunClean/execute
* 均通过本类入口实例化(依赖倒置:定时器框架/路由系统直接调本类,不调 Base
*
* 业务侧如需定制清理行为(如改批大小、加自定义过滤、改保留策略等),
* 重写本类对应方法即可拦截,无需改动 extend/base/。
*/
class XhprofRunClean extends XhprofRunCleanBase
{
}