zoukankan      html  css  js  c++  java
  • cacheMap用来清除过期时间的对象。

    cacheMap定时缓存

    /**
     * 用来存储短暂对象的缓存类,实现Map接口,内部有一个定时器用来清除过期(30秒)的对象。
     * 为避免创建过多线程,没有特殊要求请使用getDefault()方法来获取本类的实例。
     * 
     * @param <K>
     * @param <V>
     */
    
    public class CacheMap<K, V> extends AbstractMap<K, V> {
    
        private static Logger logger = Logger.getLogger(CacheMap.class);
    
        //30s清除一次缓存
        private static final long DEFAULT_TIMEOUT = 30000;
        private static CacheMap<Object, Object> defaultInstance;
    
        public static synchronized CacheMap<Object, Object> getDefault() {
            if (defaultInstance == null) {
                defaultInstance = new CacheMap<Object, Object>(DEFAULT_TIMEOUT);
            }
            return defaultInstance;
        }
    
        private class CacheEntry implements Entry<K, V> {
            long time;
            V value;
            K key;
    
            CacheEntry(K key, V value) {
                super();
                this.value = value;
                this.key = key;
                this.time = System.currentTimeMillis();
            }
    
            @Override
            public K getKey() {
                return key;
            }
    
            @Override
            public V getValue() {
                return value;
            }
    
            @Override
            public V setValue(V value) {
                return this.value = value;
            }
        }
    
        private class ClearThread extends Thread {
            ClearThread() {
                setName("clear cache thread");
            }
    
            @Override
            public void run() {
                while (true) {
                    logger.info("准备清理。。。。。。");
                    try {
                        long now = System.currentTimeMillis();
                        Object[] keys = map.keySet().toArray();
                        for (Object key : keys) {
                            CacheEntry entry = map.get(key);
                            if (now - entry.time >= cacheTimeout) {
                                synchronized (map) {
                                    map.remove(key);
                                    logger.info("清除了key:" + key);
                                }
                            }
                        }
                        Thread.sleep(cacheTimeout);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    
        private long cacheTimeout;
        private Map<K, CacheEntry> map = new HashMap<K, CacheEntry>();
    
        public CacheMap(long timeout) {
            this.cacheTimeout = timeout;
            new ClearThread().start();
        }
    
        public CacheMap() {
            this(DEFAULT_TIMEOUT);
        }
    
        @Override
        public Set<Entry<K, V>> entrySet() {
            Set<Entry<K, V>> entrySet = new HashSet<Entry<K, V>>();
            Set<Entry<K, CacheEntry>> wrapEntrySet = map.entrySet();
            for (Entry<K, CacheEntry> entry : wrapEntrySet) {
                entrySet.add(entry.getValue());
            }
            return entrySet;
        }
    
        @Override
        public V get(Object key) {
            CacheEntry entry = map.get(key);
            return entry == null ? null : entry.value;
        }
    
        @Override
        public V put(K key, V value) {
            CacheEntry entry = new CacheEntry(key, value);
            synchronized (map) {
                map.put(key, entry);
            }
            return value;
        }
    
    }
  • 相关阅读:
    腾讯微博登录组件
    daffodil
    素数是个什么东西 prime number
    sama5d3 xplained 文件系统配置IP,系统复位后IP丢失[已解决]
    sama5d3 xplained 系统加载后确认使用的网口
    SAMA5D3 Xplained 开发板烧写官方固件后启动失败【已解决】
    linux文件系统解压 tar: Exiting with failure status due to previous errors [Solved]
    安装POSIX man 手册
    老子《道德经》第四十三章
    老子《道德经》第四十二章
  • 原文地址:https://www.cnblogs.com/zchok/p/11813320.html
Copyright © 2011-2022 走看看