Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
74873e9d
提交
74873e9d
authored
8月 06, 2018
作者:
Andrei Tokar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
added "test case"
上级
deda7e4b
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
114 行增加
和
0 行删除
+114
-0
TestLIRSMemoryConsumption.java
h2/src/test/org/h2/test/db/TestLIRSMemoryConsumption.java
+114
-0
没有找到文件。
h2/src/test/org/h2/test/db/TestLIRSMemoryConsumption.java
0 → 100644
浏览文件 @
74873e9d
package
org
.
h2
.
test
.
db
;
import
org.h2.mvstore.cache.CacheLongKeyLIRS
;
import
org.h2.test.TestBase
;
import
org.h2.test.TestDb
;
import
java.util.Random
;
/**
* Class TestLIRSMemoryConsumption.
* <UL>
* <LI> 8/5/18 10:57 PM initial creation
* </UL>
*
* @author <a href='mailto:andrei.tokar@gmail.com'>Andrei Tokar</a>
*/
public
class
TestLIRSMemoryConsumption
extends
TestDb
{
/**
* Run just this test.
*
* @param a
* ignored
*/
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
.
createCaller
().
init
().
test
();
}
@Override
public
void
test
()
{
testMemoryConsumption
();
System
.
out
.
println
(
"-----------------------"
);
testMemoryConsumption
();
System
.
out
.
println
(
"-----------------------"
);
testMemoryConsumption
();
}
private
void
testMemoryConsumption
()
{
int
size
=
1_000_000
;
Random
rng
=
new
Random
();
CacheLongKeyLIRS
.
Config
config
=
new
CacheLongKeyLIRS
.
Config
();
for
(
int
mb
=
1
;
mb
<=
16
;
mb
*=
2
)
{
config
.
maxMemory
=
mb
*
1024
*
1024
;
CacheLongKeyLIRS
<
Object
>
cache
=
new
CacheLongKeyLIRS
<>(
config
);
long
memoryUsedInitial
=
getMemUsedKb
();
for
(
int
i
=
0
;
i
<
size
;
i
++)
{
cache
.
put
(
i
,
createValue
(
i
),
getValueSize
(
i
));
}
for
(
int
i
=
0
;
i
<
size
;
i
++)
{
int
key
;
int
mode
=
rng
.
nextInt
(
4
);
switch
(
mode
)
{
default
:
case
0
:
key
=
rng
.
nextInt
(
10
);
break
;
case
1
:
key
=
rng
.
nextInt
(
100
);
break
;
case
2
:
key
=
rng
.
nextInt
(
10_000
);
break
;
case
3
:
key
=
rng
.
nextInt
(
1_000_000
);
break
;
}
Object
val
=
cache
.
get
(
key
);
if
(
val
==
null
)
{
cache
.
put
(
key
,
createValue
(
key
),
getValueSize
(
key
));
}
}
eatMemory
(
1
);
freeMemory
();
cache
.
trimNonResidentQueue
();
long
memoryUsed
=
getMemUsedKb
();
int
sizeHot
=
cache
.
sizeHot
();
int
sizeResident
=
cache
.
size
();
int
sizeNonResident
=
cache
.
sizeNonResident
();
long
hits
=
cache
.
getHits
();
long
misses
=
cache
.
getMisses
();
System
.
out
.
println
(
mb
+
" | "
+
(
memoryUsed
-
memoryUsedInitial
+
512
)
/
1024
+
" | "
+
(
sizeResident
+
sizeNonResident
)
+
" | "
+
sizeHot
+
" | "
+
(
sizeResident
-
sizeHot
)
+
" | "
+
sizeNonResident
+
" | "
+
(
hits
*
100
/
(
hits
+
misses
))
);
}
}
private
Object
createValue
(
long
key
)
{
// return new Object();
return
new
byte
[
2540
];
}
private
int
getValueSize
(
long
key
)
{
// return 16;
return
2560
;
}
private
long
getMemUsedKb
()
{
Runtime
rt
=
Runtime
.
getRuntime
();
long
memory
=
Long
.
MAX_VALUE
;
for
(
int
i
=
0
;
i
<
8
;
i
++)
{
rt
.
gc
();
long
memNow
=
(
rt
.
totalMemory
()
-
rt
.
freeMemory
())
/
1024
;
if
(
memNow
>=
memory
)
{
break
;
}
memory
=
memNow
;
try
{
Thread
.
sleep
(
1000
);
}
catch
(
InterruptedException
e
)
{
/**/
}
}
return
memory
;
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论