t****o 发帖数: 181 | 1 想重复测试一个数据,
不想受Garbage Collection的影响,
有什么办法能暂时禁用Garbage Collection吗? |
d********r 发帖数: 199 | 2 既然你只是测试一下,
如果实在找不到解决方案的话,那找到JDK关于 gc 的source code,
改一下然后重新编译生成JDK的运行库,我想应该可以吧?
【在 t****o 的大作中提到】 : 想重复测试一个数据, : 不想受Garbage Collection的影响, : 有什么办法能暂时禁用Garbage Collection吗?
|
m******t 发帖数: 2416 | 3
You can't disable gc (that would like disabling the brake
the your car), but you can play with the gc parameters to
prevent it from kicking in so often.
【在 t****o 的大作中提到】 : 想重复测试一个数据, : 不想受Garbage Collection的影响, : 有什么办法能暂时禁用Garbage Collection吗?
|
c*****t 发帖数: 1879 | 4 JVM run time has an option to disable the GC.
【在 t****o 的大作中提到】 : 想重复测试一个数据, : 不想受Garbage Collection的影响, : 有什么办法能暂时禁用Garbage Collection吗?
|
m******t 发帖数: 2416 | 5
ft, how?
【在 c*****t 的大作中提到】 : JVM run time has an option to disable the GC.
|