com.dexcoder.commons.utils.CacheUtils Maven / Gradle / Ivy
The newest version!
package com.dexcoder.commons.utils;
import com.dexcoder.commons.cache.CacheMap;
import com.dexcoder.commons.cache.LRUCache;
/**
* 缓存
*
* Created by liyd on 1/5/15.
*/
@SuppressWarnings("unchecked")
public class CacheUtils {
/** 默认缓存大小 */
public static final int DEFAULT_CACHE_SIZE = 5000;
/** 默认缓存存活时间 毫秒 一个小时 */
public static final long DEFAULT_CACHE_LIVE_TIME = 1000 * 60 * 60;
/** 缓存map */
private static CacheMap
© 2015 - 2025 Weber Informatics LLC | Privacy Policy