Blame view

VodConstant.java 828 Bytes
涂亚平 committed
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 26 27 28 29 30 31
package com.subsidy.common.constant;

import lombok.Getter;

@Getter
public class VodConstant {

    /* 流量 */
    public final static String FLUX = "Flux";

    /* 带宽 */
    public final static String BANDWIDTH = "Bandwidth";

    /* 请求数 */
    public final static String REQUESTS = "Requests";

    /* 请求命中率 */
    public final static String HITRATE = "Hitrate";

    /* IP访问次数 */
    public final static String IP_VISITS = "Ip_visits";

    /* 带宽缓存key */
    public final static String BANDWIDTH_CACHE_KEY = "CDNStatBandwidthCache";

    /* 流量缓存key */
    public final static String FLUX_CACHE_KEY = "CDNStatFluxCache";

    /* 自定义缓存名称(ehcache.xml中的自定义规则名称) */
    public final static String CDN_STAT_DETAILS_CACHE_NAME = "CDNStatDetails";
}