修复bug

This commit is contained in:
kunfei
2022-05-05 22:46:04 +08:00
parent 04b64d708b
commit f0809368bc
@@ -11,11 +11,7 @@ import splitties.init.appCtx
object CacheManager { object CacheManager {
private val queryTTFMap = hashMapOf<String, Pair<Long, QueryTTF>>() private val queryTTFMap = hashMapOf<String, Pair<Long, QueryTTF>>()
private val memoryLruCache = object : LruCache<String, Cache>(100) { private val memoryLruCache = object : LruCache<String, Cache>(100) {}
override fun sizeOf(key: String, value: Cache): Int {
return 1
}
}
/** /**
* saveTime 单位为秒 * saveTime 单位为秒
@@ -88,6 +84,8 @@ object CacheManager {
val cache = queryTTFMap[key] ?: return null val cache = queryTTFMap[key] ?: return null
if (cache.first == 0L || cache.first > System.currentTimeMillis()) { if (cache.first == 0L || cache.first > System.currentTimeMillis()) {
return cache.second return cache.second
} else {
queryTTFMap.remove(key)
} }
return null return null
} }