feat(nginx-log): NginxLogAggregator 聚合 service(Base/App 双层,delete-then-insert 幂等)

This commit is contained in:
augushong
2026-07-28 00:52:51 +08:00
parent 9fe55f81bf
commit ceb73c750a
2 changed files with 244 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace app\common\service;
use base\common\service\NginxLogAggregatorBase;
/**
* Nginx 访问日志聚合统计 Service业务入口.
*
* 继承自 Base 内核,业务侧可在本类中重写 aggregateHour / formatDateStr 等方法
* 来定制聚合逻辑依赖倒置Base 层只调用 app 入口类)。
*/
class NginxLogAggregator extends NginxLogAggregatorBase
{
}