Skip to content

Instantly share code, notes, and snippets.

View jingege's full-sized avatar

Bill Zhang jingege

View GitHub Profile
puts "Awesome!" unless lame
@jingege
jingege / HiveResultCache.java
Last active January 25, 2022 02:58
基于软引用的本地缓存工具
package com.yihaodian.arc.ydc.common.util;
import java.io.Closeable;
import java.io.IOException;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.SoftReference;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;