Java缓存及过期处理的简单实现「建议收藏」

Java缓存及过期处理的简单实现「建议收藏」/***缓存类实体类*/publicclassCacheEntity<T>{/***要存储的数据*/privateTvalue;/***创建的时间单位ms*/privatelongcreateTime=System.currentTimeMillis();…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

1. 创建缓存实体类

保存需要缓存的数据,缓存创建的时间和缓存的有效期

/** * 缓存类实体类 */
public class CacheEntity<T> { 
   

    /** * 要存储的数据 */
    private T value;

    /** * 创建的时间 单位ms */
    private long createTime = System.currentTimeMillis();

    /** * 缓存的有效时间 单位ms (小于等于0表示永久保存) */
    private long cacheTime;

    public CacheEntity() { 
   
        super();
    }

    public CacheEntity(T value, long cacheTime) { 
   
        this.value = value;
        this.cacheTime = cacheTime;
    }

    public T getValue() { 
   
        return value;
    }

    public void setValue(T value) { 
   
        this.value = value;
    }

    public long getCreateTime() { 
   
        return createTime;
    }

    public void setCreateTime(long createTime) { 
   
        this.createTime = createTime;
    }

    public long getCacheTime() { 
   
        return cacheTime;
    }

    public void setCacheTime(long cacheTime) { 
   
        this.cacheTime = cacheTime;
    }
}

2. 缓存的管理类

主要用户管理缓存数据,对数据的添加,删除。对缓存数据有效性校验,其中创建了一个Timer定时任务,每分钟执行一次缓存清理。

import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.TimeUnit;
/** * 缓存管理器 */
public class CacheManager { 
   

    /** * 缓存Map对象 */
    private static ConcurrentHashMap<String,CacheEntity> cacheMap = new ConcurrentHashMap<>();

    /** * 创建定时任务每分钟清理一次缓存 */
    static{ 
   
        Timer timer = new Timer();
        timer.schedule(new TimerTask() { 
   
            @Override
            public void run() { 
   
                refresh();
            }
        },0,60000);
    }

    /** * 缓存刷新,清除过期数据 */
    public static void refresh(){ 
   
        for (String key : cacheMap.keySet()) { 
   
            if(isExpire(key)){ 
   
                remove(key);
            }
        }
    }

    /** * 加入缓存 * @param key * @param value */
    public static boolean put(String key,Object value){ 
   
        if(key.isEmpty()){ 
   
            return false;
        }
        CacheEntity<Object> cacheEntity = new CacheEntity<>();
        cacheEntity.setCacheTime(0);
        cacheEntity.setValue(value);
        cacheMap.put(key,cacheEntity);
        return true;
    }

    /** * 加入缓存,包含过期时间 * @param key 缓存数据的关键字 * @param value 缓存数据 * @param cacheTime 要缓存的时间 * @param timeUnit 时间单位 */
    public static boolean put(String key, Object value,long cacheTime,TimeUnit timeUnit){ 
   
        if(key.isEmpty()){ 
   
            return false;
        }
        CacheEntity<Object> cacheEntity = new CacheEntity<>();
        cacheEntity.setCacheTime(timeUnit.toMillis(cacheTime));
        cacheEntity.setValue(value);
        cacheMap.put(key,cacheEntity);
        return true;
    }

    /** * 移除缓存数据 * @param key */
    public static boolean remove(String key){ 
   
        if(key.isEmpty()){ 
   
            return false;
        }
        if(!cacheMap.containsKey(key)){ 
   
            return true;
        }
        cacheMap.remove(key);
        return true;
    }

    /** * 获取缓存数据 * @param key * @return */
    public static Object get(String key){ 
   
        if(key.isEmpty()||isExpire(key)){ 
   
            return null;
        }
        CacheEntity cacheEntity = cacheMap.get(key);
        if(null == cacheEntity){ 
   
            return null;
        }
        return cacheEntity.getValue();
    }

    /** * 判断当前数据是否已过期 * @param key * @return */
    private static boolean isExpire(String key){ 
   
        if(key.isEmpty()){ 
   
            return false;
        }
        if(cacheMap.containsKey(key)){ 
   
            CacheEntity cacheEntity = cacheMap.get(key);
            long createTime = cacheEntity.getCreateTime();
            long currentTime = System.currentTimeMillis();
            long cacheTime = cacheEntity.getCacheTime();
            if(cacheTime>0&&currentTime-createTime>cacheTime){ 
   
                return true;
            }
            return false;
        }
        return false;
    }

    /** * 获取当前缓存大小(包含已过期但未清理的数据) * @return */
    public static int getCacheSize(){ 
   
        return cacheMap.size();
    }
}

3. 缓存的测试类

验证缓存对数据的存储,提取及对数据有效性的验证。

import java.util.concurrent.TimeUnit;
/** * 测试类 */
public class Main { 
   

    public static void main(String[] args) throws InterruptedException { 
   

		// try { 
   
		// Class.forName(CacheManager.class.getName());
		// } catch (ClassNotFoundException e) { 
   
		// e.printStackTrace();
		// }

        CacheManager.put("one","第一个数据");
        CacheManager.put("two","第二条数据",50, TimeUnit.SECONDS);
        CacheManager.put("three","第三条数据",3,TimeUnit.MINUTES);

        System.out.println("立刻获取------------------------");
        System.out.println(CacheManager.get("one"));
        System.out.println(CacheManager.get("two"));
        System.out.println(CacheManager.get("three"));

        Thread.sleep(55000);
        System.out.println("55秒后------------------------");
        System.out.println(CacheManager.get("one"));
        System.out.println(CacheManager.get("two"));
        System.out.println(CacheManager.get("three"));

        Thread.sleep(60000-55000);
        System.out.println("1分钟后------------------------");
        System.out.println(CacheManager.get("one"));
        System.out.println(CacheManager.get("two"));
        System.out.println(CacheManager.get("three"));

        Thread.sleep(120000-60000);
        System.out.println("2分钟后------------------------");
        System.out.println(CacheManager.get("one"));
        System.out.println(CacheManager.get("two"));
        System.out.println(CacheManager.get("three"));

        Thread.sleep(180000-120000);
        System.out.println("3分钟时------------------------");
        System.out.println(CacheManager.get("one"));
        System.out.println(CacheManager.get("two"));
        System.out.println(CacheManager.get("three"));

        Thread.sleep(190000-180000);
        System.out.println("3分钟10秒后------------------------");
        System.out.println(CacheManager.get("one"));
        System.out.println(CacheManager.get("two"));
        System.out.println(CacheManager.get("three"));

        System.out.println("缓存的大小: "+CacheManager.getCacheSize());

        System.out.println("main over------------------------");

    }
}

4.测试结果

测试结果

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/189097.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • php开发微信公众号步骤_PHP接口

    php开发微信公众号步骤_PHP接口最近在帮别人做个小项目,要用到微信公众平台,虽然以前也做过微信开发,但是没有深入的自己去搞一套微信开发的东西(也搞不了,那时候没能力,也弄不到微信公众号),最近开始搞,第一步就是配置微信基本配置(账号注册我就不赘述了)。我们首先要启用服务器配置,并填写URL,token,AESKey,加密方式那么URL怎么填写呢?网上有很多种教程,最靠谱的一种是去新浪云注册个免费的PHP服务器,

    2022年8月20日
    9
  • js刷新选项卡tabs

    js刷新选项卡tabs不忘初心,方得始终!

    2025年5月30日
    2
  • 写出Oracle分页语句,Oracle分页语句

    写出Oracle分页语句,Oracle分页语句select*from(selectA.*,rownumrdfrom(select*from[tablename]where[condition]orderby[condition])Awhererownum<=[endpage*pagesize])whererd>=[startpage*pagesize];1.select*from…

    2022年5月8日
    50
  • 电脑设备管理器没有调制解调器_电脑里没有调制解调器

    电脑设备管理器没有调制解调器_电脑里没有调制解调器泼冷水丶回答数:5138|被采纳数:532017-01-0910:55:29打开控制面板。我们的很多操作都在控制面板里实现完成的。查看是否安装过BlueSoleil驱动。首先确定你的电脑上曾经装过BlueSoleil驱动。如果没有装过这个,装过其他提供调制解调器的驱动也可以。安装的蓝牙调制解调器使用情况。在网上邻居里观察下我们的BluetoothPANNetWorkAdapte…

    2025年5月31日
    7
  • PHP实现IP访问限制及提交次数的方法详解

    PHP实现IP访问限制及提交次数的方法详解

    2021年10月25日
    42
  • Redis集群主从复制(一主两从)搭建配置教程【Windows环境】

    如何学会在合适的场景使用合适的技术方案,这值得思考。由于本地环境的使用,所以搭建一个本地的Redis集群,本篇讲解Redis主从复制集群的搭建,使用的平台是Windows,搭建的思路和Linux上基本一致! (精读阅读本篇可能花费您15分钟,略读需5分钟左右)Redis主从复制简单介绍为了使得集群在一部分节点下线或者无法与集群的大多数节点进行通讯的情况下, 仍然可以正常运…

    2022年2月27日
    57

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号