我有一个控制台Java应用程序需要数据库中的一些数据。由于应用程序每30秒运行一次,为了降低数据库的压力,我正在使用某种缓存来存储数据。
因为数据库中没有大量的所需数据,所以我使用单例Hashmap作为我的缓存。我的缓存类看起来像这样:
public class Cache extends Hashmap<Integer, Hashmap<Integer, ArrayList<String>> {
//some code
}
每隔5分钟系统将刷新缓存:
1)为现有数据调用“clear()” 2)使用db中的新数据填充缓存。
告诉我,如果我为结构调用“clear()”(“嵌套”哈希映射),Java会清除我的缓存键下的所有数据,或者我最终会出现内存泄漏吗?
答案 0 :(得分:1)
你可以做到这一点,但我建议一个更好的选择是替换它。如果您有多个线程,这将更有效。
public class Cache {
private Map<Integer, Map<Integer, List<String>>> map;
public Cache(args) {
}
public synchronized Map<Integer, Map<Integer, List<String>>> getMap() {
return map;
}
// called by a thread every 30 seconds.
public void updateCache() {
Map<Integer, Map<Integer, List<String>>> newMap = ...
// build new map, can take seconds.
// quickly swap in the new map.
synchronzied(this) {
map = newMap;
}
}
}
这既线程安全又影响最小。
答案 1 :(得分:0)
本文对您有所帮助。
Is Java HashMap.clear() and remove() memory effective?
而且,HassMap不是线程安全的。 如果你想使用单例HashMap,你最好使用ConcurrentHashMap。