All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jeesuite.mybatis.plugin.cache.CacheExpires Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/**
 * 
 */
package com.jeesuite.mybatis.plugin.cache;

/**
 * 缓存过期时间
 * @description 
* @author vakin * @date 2016年2月28日 * @Copyright (c) 2015, jwww */ public class CacheExpires { public final static long IN_1MIN = 60; public final static long IN_3MINS = 60 * 3; public final static long IN_5MINS = 60 * 5; public final static long IN_1HOUR = 60 * 60; public final static long IN_1DAY = IN_1HOUR * 24; public final static long IN_1WEEK = IN_1DAY * 7; public final static long IN_1MONTH = IN_1DAY * 30; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy