- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了这段代码(用虚拟数据改编):
public Map<String, Integer> queryDatabase() {
final Map<String, Integer> map = new TreeMap<>();
map.put("one", 1);
map.put("two", 2);
// ...
return map;
}
public Map.Entry<String, Integer> getEntry(int n) {
final Map<String, Integer> map = queryDatabase();
for (final Map.Entry<String, Integer> entry : map.entrySet()) {
if (entry.getValue().equals(n)) return entry; // dummy check
}
return null;
}
Entry
然后存储到一个新创建的对象中,该对象在未定义的时间段内保存到缓存中:
class DataBundle {
Map.Entry<String, Integer> entry;
public void doAction() {
this.entry = Application.getEntry(2);
}
}
queryDatabase
在一分钟内被多次调用,本地 Maps 应该在随后的 gc 循环中被丢弃。我有理由相信
DataBundle
保持
Entry
引用防止
Map
完全不被收集。
java.util.TreeMap.Entry
持有对 sibling 的多个引用:
static final class Entry<K,V> implements Map.Entry<K,V> {
K key;
V value;
Entry<K,V> left;
Entry<K,V> right;
Entry<K,V> parent;
// ...
}
Map.Entry
进入成员字段保留本地
Map
实例进入内存?
最佳答案
我编写了一个基准测试应用程序,结果清楚地表明 JVM 是 无法收集本地Map
实例 如果 Entry
引用保持活跃。
这仅适用于 TreeMap
s 虽然,原因可能是 TreeMap.Entry
对它的兄弟有不同的引用。
正如@OldCurmudgeon 提到的,
you should not make any assumptions [and] if you wish to store Key-Value pairs derived from a Map.Entry then you should take copies
Map
您正在使用,持有
Map.Entry
应该考虑
邪恶和
反模式 .
Map.Entry
的副本或者直接存储key和value。
java version "1.8.0_152"
Java(TM) SE Runtime Environment (build 1.8.0_152-b16)
Java HotSpot(TM) 64-Bit Server VM (build 25.152-b16, mixed mode)
Caption : Intel64 Family 6 Model 158 Stepping 9
DeviceID : CPU0
Manufacturer : GenuineIntel
MaxClockSpeed : 4201
Name : Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz
SocketDesignation : LGA1151
Model Name MaxCapacity MemoryDevices
----- ---- ----------- -------------
Physical Memory Array 67108864 4
500
次DataBundle
的新实例将在每次迭代中创建一个随机的 Map.Entry
调用 getEntry(int)
queryDatabase
将创建一个本地 TreeMap
的 100_000
每次通话的元素和getEntry
只会返回一个 Map.Entry
从 map 。 DataBundle
实例将存储到 ArrayList
缓存。 DataBundle
存储 Map.Entry
在基准测试中会有所不同,以演示 gc
履行职责的能力。 100
调用queryDatabase
cache
将被清除:这是看gc
的效果在 visualvm DataBundle
类(class):
class DataBundle {
Map.Entry<String, Integer> entry = null;
public DataBundle(int i) {
this.entry = Benchmark_1.getEntry(i);
}
}
public class Benchmark_1 {
static final List<DataBundle> CACHE = new ArrayList<>();
static final int MAP_SIZE = 100_000;
public static void main(String[] args) throws InterruptedException {
for (int i = 0; i < 500; i++) {
if (i % 100 == 0) {
System.out.println("Clearing");
CACHE.clear();
}
final DataBundle dataBundle = new DataBundle(new Random().nextInt(MAP_SIZE));
CACHE.add(dataBundle);
Thread.sleep(500); // to observe behavior in visualvm
}
}
public static Map<String, Integer> queryDatabase() {
final Map<String, Integer> map = new TreeMap<>();
for (int i = 0; i < MAP_SIZE; i++) map.put(String.valueOf(i), i);
return map;
}
public static Map.Entry<String, Integer> getEntry(int n) {
final Map<String, Integer> map = queryDatabase();
for (final Map.Entry<String, Integer> entry : map.entrySet())
if (entry.getValue().equals(n)) return entry;
return null;
}
}
100
迭代(缓存清除)并抛出
java.lang.OutOfMemoryError
:
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
at java.lang.Integer.valueOf(Integer.java:832)
at org.payloc.benchmark.Benchmark_1.queryDatabase(Benchmark_1.java:34)
at org.payloc.benchmark.Benchmark_1.getEntry(Benchmark_1.java:38)
at org.payloc.benchmark.DataBundle.<init>(Benchmark_1.java:11)
at org.payloc.benchmark.Benchmark_1.main(Benchmark_1.java:26)
Mar 22, 2018 1:06:41 PM sun.rmi.transport.tcp.TCPTransport$AcceptLoop executeAcceptLoop
WARNING: RMI TCP Accept-0: accept loop for
ServerSocket[addr=0.0.0.0/0.0.0.0,localport=31158] throws
java.lang.OutOfMemoryError: Java heap space
at java.net.NetworkInterface.getAll(Native Method)
at java.net.NetworkInterface.getNetworkInterfaces(NetworkInterface.java:343)
at sun.management.jmxremote.LocalRMIServerSocketFactory$1.accept(LocalRMIServerSocketFactory.java:86)
at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:400)
at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:372)
at java.lang.Thread.run(Thread.java:748)
*** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message can't create byte arrau at JPLISAgent.c line: 813
visualvm
图表清楚地显示了内存是如何保留的,尽管
gc
在后台执行一些 Activity ,因此:
持单Entry
保留整个 Map
在堆中。
TreeMap
我正在使用
HashMap
.
gc
可以收集本地
Map
尽管存储了
Map.Entry
的实例被保存在内存中,(如果您实际上尝试在基准测试之后打印
cache
结果,您将看到实际值)。
visualvm
图表:
TreeMap
,但这次,而不是
Map.Entry
,我将直接存储键和值数据。
class DataBundle3 {
String key;
Integer value;
public DataBundle3(int i) {
Map.Entry<String, Integer> e = Benchmark_3.getEntry(i);
this.key = e.getKey();
this.value = e.getValue();
}
}
gc
定期清理 map 。
java.lang.ref.SoftReference
我会用它发布一个基准。
TreeMap
, 仍然存储
Map.Entry
进入
DataBundle
, 但使用
SoftReference<DataBundle>
的列表.
static final List<SoftReference<DataBundle>> CACHE = new ArrayList<>();
CACHE.add(new SoftReference<>(dataBundle));
gc
可以随时免费收集 map 。
SoftReference
不保留其
referent
(在我们的例子中是
Map.Entry
)被收集。
关于java - 从 map 存储条目是否安全?它会导致内存泄漏吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49424680/
我有一个 if 语句,如下所示 if (not(fullpath.lower().endswith(".pdf")) or not (fullpath.lower().endswith(tup
然而,在 PHP 中,可以: only appears if $foo is true. only appears if $foo is false. 在 Javascript 中,能否在一个脚
XML有很多好处。它既是机器可读的,也是人类可读的,它具有标准化的格式,并且用途广泛。 它也有一些缺点。它是冗长的,不是传输大量数据的非常有效的方法。 XML最有用的方面之一是模式语言。使用模式,您可
由于长期使用 SQL2000,我并没有真正深入了解公用表表达式。 我给出的答案here (#4025380)和 here (#4018793)违背了潮流,因为他们没有使用 CTE。 我很欣赏它们对于递
我有一个应用程序: void deleteObj(id){ MyObj obj = getObjById(id); if (obj == null) { throw n
我的代码如下。可能我以类似的方式多次使用它,即简单地说,我正在以这种方式管理 session 和事务: List users= null; try{ sess
在开发J2EE Web应用程序时,我通常会按以下方式组织我的包结构 com.jameselsey.. 控制器-控制器/操作转到此处 服务-事务服务类,由控制器调用 域-应用程序使用的我的域类/对象 D
这更多是出于好奇而不是任何重要问题,但我只是想知道 memmove 中的以下片段文档: Copying takes place as if an intermediate buffer were us
路径压缩涉及将根指定为路径上每个节点的新父节点——这可能会降低根的等级,并可能降低路径上所有节点的等级。有办法解决这个问题吗?有必要处理这个吗?或者,也许可以将等级视为树高的上限而不是确切的高度? 谢
我有两个类,A 和 B。A 是 B 的父类,我有一个函数接收指向 A 类型类的指针,检查它是否也是 B 类型,如果是将调用另一个函数,该函数接受一个指向类型 B 的类的指针。当函数调用另一个函数时,我
有没有办法让 valgrind 使用多个处理器? 我正在使用 valgrind 的 callgrind 进行一些瓶颈分析,并注意到我的应用程序中的资源使用行为与在 valgrind/callgrind
假设我们要使用 ReaderT [(a,b)]超过 Maybe monad,然后我们想在列表中进行查找。 现在,一个简单且不常见的方法是: 第一种可能性 find a = ReaderT (looku
我的代码似乎有问题。我需要说的是: if ( $('html').attr('lang').val() == 'fr-FR' ) { // do this } else { // do
根据this文章(2018 年 4 月)AKS 在可用性集中运行时能够跨故障域智能放置 Pod,但尚不考虑更新域。很快就会使用更新域将 Pod 放入 AKS 中吗? 最佳答案 当您设置集群时,它已经自
course | section | type comart2 : bsit201 : lec comart2 :
我正在开发自己的 SDK,而这又依赖于某些第 3 方 SDK。例如 - OkHttp。 我应该将 OkHttp 添加到我的 build.gradle 中,还是让我的 SDK 用户包含它?在这种情况下,
随着 Rust 越来越充实,我对它的兴趣开始激起。我喜欢它支持代数数据类型,尤其是那些匹配的事实,但是对其他功能习语有什么想法吗? 例如标准库中是否有标准过滤器/映射/归约函数的集合,更重要的是,您能
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 9 年前。 Improve
我一直在研究 PHP 中的对象。我见过的所有示例甚至在它们自己的对象上都使用了对象构造函数。 PHP 会强制您这样做吗?如果是,为什么? 例如: firstname = $firstname;
...比关联数组? 关联数组会占用更多内存吗? $arr = array(1, 1, 1); $arr[10] = 1; $arr[] = 1; // <- index is 11; does the
我是一名优秀的程序员,十分优秀!