JAVA内存缓存使用,timer+map超时缓存。模拟redis、memcached

说起缓存,我们总是充满敬意,介于程序与数据库之间,缓解数据库负载压力,以内存为代价,百倍提升程序性能。然而,内存是廉价的,只要不存储大数据,基本也是可以接受的。

功能点:缓存key-value键值存储、缓存过期时间

适用范围:小程序、小项目、小数据存储。高频访问数据存储。单机非集群数据存储。

缓存代码类:

package org.coody.framework.core.cache;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.ConcurrentHashMap;

/**
 * @className:CacheHandler
 * @description:缓存操作类,对缓存进行管理,清除方式采用Timer定时的方式
 * @creater:Coody
 * @creatTime:2014年5月7日 上午9:18:54 @remark:
 * @version
 */
@SuppressWarnings("unchecked")
public class LocalCache {
	// private static final long SECOND_TIME = 1000;//默认过期时间 20秒
	// private static final int DEFUALT_VALIDITY_TIME = 20;//默认过期时间 20秒
	private static final Timer timer;
	private static final ConcurrentHashMap<String, Object> map;
	static Object mutex = new Object();
	static {
		timer = new Timer();
		map = new ConcurrentHashMap<String, Object>();
	}

	/**
	 * 增加缓存对象
	 * 
	 * @param key
	 * @param ce
	 * @param validityTime
	 *            有效时间
	 */
	public static void setCache(String key, Object ce, int validityTime) {
		map.put(key, new CacheWrapper(validityTime, ce));
		timer.schedule(new TimeoutTimerTask(key), validityTime * 1000);
	}

	// 获取缓存KEY列表
	public static Set<String> getCacheKeys() {
		return map.keySet();
	}

	public static List<String> getKeysFuzz(String patton) {
		List<String> list = new ArrayList<String>();
		for (String tmpKey : map.keySet()) {
			if (tmpKey.contains(patton)) {
				list.add(tmpKey);
			}
		}
		if (isNullOrEmpty(list)) {
			return null;
		}
		return list;
	}

	public static Integer getKeySizeFuzz(String patton) {
		Integer num = 0;
		for (String tmpKey : map.keySet()) {
			if (tmpKey.startsWith(patton)) {
				num++;
			}
		}
		return num;
	}

	/**
	 * 增加缓存对象
	 * 
	 * @param key
	 * @param ce
	 * @param validityTime
	 *            有效时间
	 */
	public static void setCache(String key, Object ce) {
		map.put(key, new CacheWrapper(ce));
	}

	/**
	 * 获取缓存对象
	 * 
	 * @param key
	 * @return
	 */
	public static <T> T getCache(String key) {
		CacheWrapper wrapper = (CacheWrapper) map.get(key);
		if (wrapper == null) {
			return null;
		}
		return (T) wrapper.getValue();
	}

	/**
	 * 检查是否含有制定key的缓冲
	 * 
	 * @param key
	 * @return
	 */
	public static boolean contains(String key) {
		return map.containsKey(key);
	}

	/**
	 * 删除缓存
	 * 
	 * @param key
	 */
	public static void delCache(String key) {
		map.remove(key);
	}

	/**
	 * 删除缓存
	 * 
	 * @param key
	 */
	public static void delCacheFuzz(String key) {
		for (String tmpKey : map.keySet()) {
			if (tmpKey.contains(key)) {
				map.remove(tmpKey);
			}
		}
	}

	/**
	 * 获取缓存大小
	 * 
	 * @param key
	 */
	public static int getCacheSize() {
		return map.size();
	}

	/**
	 * 清除全部缓存
	 */
	public static void clearCache() {
		map.clear();
	}

	/**
	 * @projName:lottery
	 * @className:TimeoutTimerTask
	 * @description:清除超时缓存定时服务类
	 * @creater:Coody
	 * @creatTime:2014年5月7日上午9:34:39
	 * @alter:Coody
	 * @alterTime:2014年5月7日 上午9:34:39 @remark:
	 * @version
	 */
	static class TimeoutTimerTask extends TimerTask {
		private String ceKey;

		public TimeoutTimerTask(String key) {
			this.ceKey = key;
		}

		@Override
		public void run() {
			CacheWrapper cacheWrapper = (CacheWrapper) map.get(ceKey);
			if (cacheWrapper == null || cacheWrapper.getDate() == null) {
				return;
			}
			if (new Date().getTime() < cacheWrapper.getDate().getTime()) {
				return;
			}
			LocalCache.delCache(ceKey);
		}
	}

	public static boolean isNullOrEmpty(Object obj) {
		try {
			if (obj == null)
				return true;
			if (obj instanceof CharSequence) {
				return ((CharSequence) obj).length() == 0;
			}
			if (obj instanceof Collection) {
				return ((Collection<?>) obj).isEmpty();
			}
			if (obj instanceof Map) {
				return ((Map<?, ?>) obj).isEmpty();
			}
			if (obj instanceof Object[]) {
				Object[] object = (Object[]) obj;
				if (object.length == 0) {
					return true;
				}
				boolean empty = true;
				for (int i = 0; i < object.length; i++) {
					if (!isNullOrEmpty(object[i])) {
						empty = false;
						break;
					}
				}
				return empty;
			}
			return false;
		} catch (Exception e) {
			return true;
		}

	}

	private static class CacheWrapper {
		private Date date;
		private Object value;

		public CacheWrapper(int time, Object value) {
			this.date = new Date(System.currentTimeMillis() + time * 1000);
			this.value = value;
		}

		public CacheWrapper(Object value) {
			this.value = value;
		}

		public Date getDate() {
			return date;
		}

		public Object getValue() {
			return value;
		}
	}
}

 

使用方式:

//查缓存
LocalCache.getCache(key);
//清除缓存
LocalCache.removeCache(key);

 

JAVA交流群:218481849

转载于:https://my.oschina.net/hooker/blog/833194

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值