欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java CacheUtil缓存工具类

程序员文章站 2022-05-29 12:44:09
...
 
导入hutooljar
传入12345678这个是容量,如果容量给3,你存放了四个值,第一个将无效。

Cache<String,String> fifoCache = CacheUtil.newFIFOCache(12345678);
  
        fifoCache.put("1","1");
        fifoCache.put("2","2");
        fifoCache.put("3","3");
        fifoCache.put("4","4");
        System.out.println(fifoCache.get("1"));
        System.out.println(fifoCache.get("2"));
        System.out.println(fifoCache.get("3"));
        System.out.println(fifoCache.get("4"));



如果对你有帮助请给小弟打赏下,祝你成功。


java CacheUtil缓存工具类
            
    
    博客分类: java CacheUtil缓存工具类 java缓存对象 
相关标签: java 缓存对象