Hutool 的 `TimedCache` 到期会自动清理吗? ——————hutool cache的“惰性清理“和“定期清理“
核心清理机制
1. 惰性清理(Lazy Eviction)
TimedCache<String, Object> cache new TimedCache<>(1000); // 默认过期时间1秒
cache.put("key1", "value1");// 在get时检查是否过期
Object value cache.get("ke…
2026/6/30 1:51:21