yanghb
2024-04-15 6bc25b33e90d45904d1843e927fa709dfeb51d7f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package cn.stylefeng.roses.kernel.system.api.constants;
 
/**
 * 接口统计缓存前缀相关
 *
 * @author xixiaowei
 * @date 2022/2/9 16:42
 */
public interface StatisticsCacheConstants {
 
    /**
     * 前缀
     */
    String INTERFACE_STATISTICS_PREFIX = "inter";
 
    /**
     * 超时时间
     */
    Long INTERFACE_STATISTICS_CACHE_TIMEOUT_SECONDS = 3600L;
 
    /**
     * AOP统计执行的顺序
     */
    int INTERFACE_STATISTICS_AOP_ORDER = 600;
}