Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
749d0823
提交
749d0823
authored
10月 17, 2012
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
LIRS cache: concurrent and concurrent with long key
上级
f3864e40
全部展开
显示空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
226 行增加
和
950 行删除
+226
-950
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+2
-0
RowType.java
h2/src/test/org/h2/test/store/RowType.java
+1
-1
TestCacheConcurrentLIRS.java
h2/src/test/org/h2/test/store/TestCacheConcurrentLIRS.java
+1
-1
TestCacheLIRS.java
h2/src/test/org/h2/test/store/TestCacheLIRS.java
+32
-20
TestCacheLongKeyLIRS.java
h2/src/test/org/h2/test/store/TestCacheLongKeyLIRS.java
+76
-53
CacheLIRS.java
h2/src/tools/org/h2/dev/store/btree/CacheLIRS.java
+0
-683
MVStore.java
h2/src/tools/org/h2/dev/store/btree/MVStore.java
+7
-3
CacheLIRS.java
h2/src/tools/org/h2/dev/store/cache/CacheLIRS.java
+32
-118
CacheLongKeyLIRS.java
h2/src/tools/org/h2/dev/store/cache/CacheLongKeyLIRS.java
+75
-71
没有找到文件。
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
749d0823
...
...
@@ -104,6 +104,7 @@ import org.h2.test.server.TestNestedLoop;
import
org.h2.test.server.TestWeb
;
import
org.h2.test.server.TestInit
;
import
org.h2.test.store.TestCacheLIRS
;
import
org.h2.test.store.TestCacheLongKeyLIRS
;
import
org.h2.test.store.TestConcurrent
;
import
org.h2.test.store.TestDataUtils
;
import
org.h2.test.store.TestMVStore
;
...
...
@@ -668,6 +669,7 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
private
void
testUnit
()
{
// mv store
new
TestCacheLIRS
().
runTest
(
this
);
new
TestCacheLongKeyLIRS
().
runTest
(
this
);
new
TestConcurrent
().
runTest
(
this
);
new
TestDataUtils
().
runTest
(
this
);
new
TestMVRTree
().
runTest
(
this
);
...
...
h2/src/test/org/h2/test/store/RowType.java
浏览文件 @
749d0823
...
...
@@ -8,8 +8,8 @@ package org.h2.test.store;
import
java.nio.ByteBuffer
;
import
org.h2.dev.store.btree.DataType
;
import
org.h2.dev.store.btree.MapFactory
;
import
org.h2.dev.store.btree.DataUtils
;
import
org.h2.dev.store.btree.MapFactory
;
import
org.h2.util.StringUtils
;
/**
...
...
h2/src/test/org/h2/test/store/TestCacheConcurrentLIRS.java
浏览文件 @
749d0823
...
...
@@ -8,7 +8,7 @@ package org.h2.test.store;
import
java.util.Random
;
import
java.util.concurrent.CountDownLatch
;
import
java.util.concurrent.atomic.AtomicBoolean
;
import
org.h2.dev.store.
btre
e.CacheLongKeyLIRS
;
import
org.h2.dev.store.
cach
e.CacheLongKeyLIRS
;
import
org.h2.test.TestBase
;
import
org.h2.util.Task
;
...
...
h2/src/test/org/h2/test/store/TestCacheLIRS.java
浏览文件 @
749d0823
...
...
@@ -10,7 +10,7 @@ import java.util.HashSet;
import
java.util.List
;
import
java.util.Map.Entry
;
import
java.util.Random
;
import
org.h2.dev.store.
btre
e.CacheLIRS
;
import
org.h2.dev.store.
cach
e.CacheLIRS
;
import
org.h2.test.TestBase
;
import
org.h2.util.New
;
...
...
@@ -29,6 +29,10 @@ public class TestCacheLIRS extends TestBase {
}
public
void
test
()
throws
Exception
{
testCache
();
}
private
void
testCache
()
{
testEdgeCases
();
testSize
();
testClear
();
...
...
@@ -42,7 +46,7 @@ public class TestCacheLIRS extends TestBase {
}
private
void
testEdgeCases
()
{
CacheLIRS
<
Integer
,
Integer
>
test
=
CacheLIRS
.
newInstance
(
1
,
1
);
CacheLIRS
<
Integer
,
Integer
>
test
=
createCache
(
1
);
test
.
put
(
1
,
10
,
100
);
assertEquals
(
10
,
test
.
get
(
1
).
intValue
());
try
{
...
...
@@ -82,19 +86,19 @@ public class TestCacheLIRS extends TestBase {
verifyMapSize
(
769
,
2048
);
CacheLIRS
<
Integer
,
Integer
>
test
;
test
=
CacheLIRS
.
newInstanc
e
(
3
,
10
);
test
=
createCach
e
(
3
,
10
);
test
.
put
(
0
,
0
,
9
);
test
.
put
(
1
,
10
,
9
);
test
.
put
(
2
,
20
,
9
);
test
.
put
(
3
,
30
,
9
);
test
.
put
(
4
,
40
,
9
);
test
=
CacheLIRS
.
newInstanc
e
(
1
,
1
);
test
=
createCach
e
(
1
,
1
);
test
.
put
(
1
,
10
);
test
.
put
(
0
,
0
);
test
.
get
(
0
);
test
=
CacheLIRS
.
newInstance
(
1000
,
1
);
test
=
createCache
(
1000
);
for
(
int
j
=
0
;
j
<
2000
;
j
++)
{
test
.
put
(
j
,
j
);
}
...
...
@@ -106,18 +110,18 @@ public class TestCacheLIRS extends TestBase {
assertEquals
(
968
,
test
.
sizeNonResident
());
}
private
void
verifyMapSize
(
int
elements
,
int
m
apSize
)
{
private
void
verifyMapSize
(
int
elements
,
int
expectedM
apSize
)
{
CacheLIRS
<
Integer
,
Integer
>
test
;
test
=
CacheLIRS
.
newInstance
(
elements
-
1
,
1
);
assertTrue
(
mapSize
>
test
.
sizeMapArray
()
);
test
=
CacheLIRS
.
newInstance
(
elements
,
1
);
assertEquals
(
m
apSize
,
test
.
sizeMapArray
());
test
=
CacheLIRS
.
newInstanc
e
(
elements
*
100
,
100
);
assertEquals
(
m
apSize
,
test
.
sizeMapArray
());
test
=
createCache
(
elements
-
1
);
assertTrue
(
test
.
sizeMapArray
()
<
expectedMapSize
);
test
=
createCache
(
elements
);
assertEquals
(
expectedM
apSize
,
test
.
sizeMapArray
());
test
=
createCach
e
(
elements
*
100
,
100
);
assertEquals
(
expectedM
apSize
,
test
.
sizeMapArray
());
}
private
void
testGetPutPeekRemove
()
{
CacheLIRS
<
Integer
,
Integer
>
test
=
CacheLIRS
.
newInstance
(
4
,
1
);
CacheLIRS
<
Integer
,
Integer
>
test
=
createCache
(
4
);
test
.
put
(
1
,
10
);
test
.
put
(
2
,
20
);
test
.
put
(
3
,
30
);
...
...
@@ -234,7 +238,7 @@ public class TestCacheLIRS extends TestBase {
}
private
void
testPruneStack
()
{
CacheLIRS
<
Integer
,
Integer
>
test
=
CacheLIRS
.
newInstance
(
5
,
1
);
CacheLIRS
<
Integer
,
Integer
>
test
=
createCache
(
5
);
for
(
int
i
=
0
;
i
<
7
;
i
++)
{
test
.
put
(
i
,
i
*
10
);
}
...
...
@@ -253,7 +257,7 @@ public class TestCacheLIRS extends TestBase {
}
private
void
testClear
()
{
CacheLIRS
<
Integer
,
Integer
>
test
=
CacheLIRS
.
newInstanc
e
(
40
,
10
);
CacheLIRS
<
Integer
,
Integer
>
test
=
createCach
e
(
40
,
10
);
for
(
int
i
=
0
;
i
<
5
;
i
++)
{
test
.
put
(
i
,
10
*
i
,
9
);
}
...
...
@@ -302,7 +306,7 @@ public class TestCacheLIRS extends TestBase {
}
private
void
testLimitHot
()
{
CacheLIRS
<
Integer
,
Integer
>
test
=
CacheLIRS
.
newInstance
(
100
,
1
);
CacheLIRS
<
Integer
,
Integer
>
test
=
createCache
(
100
);
for
(
int
i
=
0
;
i
<
300
;
i
++)
{
test
.
put
(
i
,
10
*
i
);
}
...
...
@@ -312,7 +316,7 @@ public class TestCacheLIRS extends TestBase {
}
private
void
testLimitNonResident
()
{
CacheLIRS
<
Integer
,
Integer
>
test
=
CacheLIRS
.
newInstance
(
4
,
1
);
CacheLIRS
<
Integer
,
Integer
>
test
=
createCache
(
4
);
for
(
int
i
=
0
;
i
<
20
;
i
++)
{
test
.
put
(
i
,
10
*
i
);
}
...
...
@@ -347,7 +351,7 @@ public class TestCacheLIRS extends TestBase {
}
CacheLIRS
<
BadHash
,
Integer
>
test
=
CacheLIRS
.
newInstance
(
size
*
2
,
1
);
CacheLIRS
<
BadHash
,
Integer
>
test
=
createCache
(
size
*
2
);
for
(
int
i
=
0
;
i
<
size
;
i
++)
{
test
.
put
(
new
BadHash
(
i
),
i
);
}
...
...
@@ -386,7 +390,7 @@ public class TestCacheLIRS extends TestBase {
boolean
log
=
false
;
int
size
=
20
;
// cache size 11 (10 hot, 1 cold)
CacheLIRS
<
Integer
,
Integer
>
test
=
CacheLIRS
.
newInstance
(
size
/
2
+
1
,
1
);
CacheLIRS
<
Integer
,
Integer
>
test
=
createCache
(
size
/
2
+
1
);
// init the cache with some dummy entries
for
(
int
i
=
0
;
i
<
size
;
i
++)
{
test
.
put
(-
i
,
-
i
*
10
);
...
...
@@ -440,7 +444,7 @@ public class TestCacheLIRS extends TestBase {
int
size
=
10
;
Random
r
=
new
Random
(
1
);
for
(
int
j
=
0
;
j
<
100
;
j
++)
{
CacheLIRS
<
Integer
,
Integer
>
test
=
CacheLIRS
.
newInstance
(
size
/
2
,
1
);
CacheLIRS
<
Integer
,
Integer
>
test
=
createCache
(
size
/
2
);
HashMap
<
Integer
,
Integer
>
good
=
New
.
hashMap
();
for
(
int
i
=
0
;
i
<
10000
;
i
++)
{
int
key
=
r
.
nextInt
(
size
);
...
...
@@ -524,4 +528,12 @@ public class TestCacheLIRS extends TestBase {
}
}
private
static
<
K
,
V
>
CacheLIRS
<
K
,
V
>
createCache
(
int
maxElements
)
{
return
createCache
(
maxElements
,
1
);
}
private
static
<
K
,
V
>
CacheLIRS
<
K
,
V
>
createCache
(
int
maxSize
,
int
averageSize
)
{
return
CacheLIRS
.
newInstance
(
maxSize
,
averageSize
,
1
,
0
);
}
}
h2/src/test/org/h2/test/store/TestCacheLongKeyLIRS.java
浏览文件 @
749d0823
...
...
@@ -10,7 +10,7 @@ import java.util.HashSet;
import
java.util.List
;
import
java.util.Map.Entry
;
import
java.util.Random
;
import
org.h2.dev.store.
btre
e.CacheLongKeyLIRS
;
import
org.h2.dev.store.
cach
e.CacheLongKeyLIRS
;
import
org.h2.test.TestBase
;
import
org.h2.util.New
;
...
...
@@ -29,19 +29,23 @@ public class TestCacheLongKeyLIRS extends TestBase {
}
public
void
test
()
throws
Exception
{
testCache
();
}
private
void
testCache
()
{
testEdgeCases
();
testSize
();
testClear
();
//
testGetPutPeekRemove();
testGetPutPeekRemove
();
testPruneStack
();
testLimitHot
();
testLimitNonResident
();
//
testScanResistance();
testScanResistance
();
testRandomOperations
();
}
private
void
testEdgeCases
()
{
CacheLongKeyLIRS
<
Integer
>
test
=
CacheLongKeyLIRS
.
newInstanc
e
(
1
);
CacheLongKeyLIRS
<
Integer
>
test
=
createCach
e
(
1
);
test
.
put
(
1
,
10
,
100
);
assertEquals
(
10
,
test
.
get
(
1
).
intValue
());
try
{
...
...
@@ -65,41 +69,52 @@ public class TestCacheLongKeyLIRS extends TestBase {
}
private
void
testSize
()
{
int
todo
;
// verifyMapSize(7, 16);
// verifyMapSize(13, 32);
// verifyMapSize(25, 64);
// verifyMapSize(49, 128);
// verifyMapSize(97, 256);
// verifyMapSize(193, 512);
// verifyMapSize(385, 1024);
// verifyMapSize(769, 2048);
//
// CacheConcurrentLongKeyLIRS<Integer> test;
// test = CacheConcurrentLongKeyLIRS.newInstance(1000, 1);
// for (int j = 0; j < 2000; j++) {
// test.put(j, j);
// }
// // for a cache of size 1000,
// // there are 62 cold entries (about 6.25%).
// assertEquals(62, test.size() - test.sizeHot());
// // at most as many non-resident elements
// // as there are entries in the stack
// assertEquals(968, test.sizeNonResident());
verifyMapSize
(
7
,
16
);
verifyMapSize
(
13
,
32
);
verifyMapSize
(
25
,
64
);
verifyMapSize
(
49
,
128
);
verifyMapSize
(
97
,
256
);
verifyMapSize
(
193
,
512
);
verifyMapSize
(
385
,
1024
);
verifyMapSize
(
769
,
2048
);
CacheLongKeyLIRS
<
Integer
>
test
;
test
=
createCache
(
3
,
10
);
test
.
put
(
0
,
0
,
9
);
test
.
put
(
1
,
10
,
9
);
test
.
put
(
2
,
20
,
9
);
test
.
put
(
3
,
30
,
9
);
test
.
put
(
4
,
40
,
9
);
test
=
createCache
(
1
,
1
);
test
.
put
(
1
,
10
);
test
.
put
(
0
,
0
);
test
.
get
(
0
);
test
=
createCache
(
1000
);
for
(
int
j
=
0
;
j
<
2000
;
j
++)
{
test
.
put
(
j
,
j
);
}
// for a cache of size 1000,
// there are 62 cold entries (about 6.25%).
assertEquals
(
62
,
test
.
size
()
-
test
.
sizeHot
());
// at most as many non-resident elements
// as there are entries in the stack
assertEquals
(
968
,
test
.
sizeNonResident
());
}
private
void
verifyMapSize
(
int
elements
,
int
m
apSize
)
{
private
void
verifyMapSize
(
int
elements
,
int
expectedM
apSize
)
{
CacheLongKeyLIRS
<
Integer
>
test
;
test
=
CacheLongKeyLIRS
.
newInstanc
e
(
elements
-
1
);
assertTrue
(
mapSize
>
test
.
sizeMapArray
()
);
test
=
CacheLongKeyLIRS
.
newInstanc
e
(
elements
);
assertEquals
(
m
apSize
,
test
.
sizeMapArray
());
test
=
CacheLongKeyLIRS
.
newInstance
(
elements
*
100
,
100
,
16
,
1
0
);
assertEquals
(
m
apSize
,
test
.
sizeMapArray
());
test
=
createCach
e
(
elements
-
1
);
assertTrue
(
test
.
sizeMapArray
()
<
expectedMapSize
);
test
=
createCach
e
(
elements
);
assertEquals
(
expectedM
apSize
,
test
.
sizeMapArray
());
test
=
createCache
(
elements
*
100
,
10
0
);
assertEquals
(
expectedM
apSize
,
test
.
sizeMapArray
());
}
private
void
testGetPutPeekRemove
()
{
CacheLongKeyLIRS
<
Integer
>
test
=
CacheLongKeyLIRS
.
newInstanc
e
(
4
);
CacheLongKeyLIRS
<
Integer
>
test
=
createCach
e
(
4
);
test
.
put
(
1
,
10
);
test
.
put
(
2
,
20
);
test
.
put
(
3
,
30
);
...
...
@@ -216,7 +231,7 @@ public class TestCacheLongKeyLIRS extends TestBase {
}
private
void
testPruneStack
()
{
CacheLongKeyLIRS
<
Integer
>
test
=
CacheLongKeyLIRS
.
newInstanc
e
(
5
);
CacheLongKeyLIRS
<
Integer
>
test
=
createCach
e
(
5
);
for
(
int
i
=
0
;
i
<
7
;
i
++)
{
test
.
put
(
i
,
i
*
10
);
}
...
...
@@ -235,7 +250,7 @@ public class TestCacheLongKeyLIRS extends TestBase {
}
private
void
testClear
()
{
CacheLongKeyLIRS
<
Integer
>
test
=
CacheLongKeyLIRS
.
newInstance
(
40
,
10
,
16
,
1
);
CacheLongKeyLIRS
<
Integer
>
test
=
createCache
(
40
,
10
);
for
(
int
i
=
0
;
i
<
5
;
i
++)
{
test
.
put
(
i
,
10
*
i
,
9
);
}
...
...
@@ -252,10 +267,10 @@ public class TestCacheLongKeyLIRS extends TestBase {
}
assertEquals
(
40
,
test
.
getMaxMemory
());
assertEquals
(
10
,
test
.
getAverageMemory
());
//
assertEquals(36, test.getUsedMemory());
//
assertEquals(4, test.size());
//
assertEquals(3, test.sizeHot());
//
assertEquals(1, test.sizeNonResident());
assertEquals
(
36
,
test
.
getUsedMemory
());
assertEquals
(
4
,
test
.
size
());
assertEquals
(
3
,
test
.
sizeHot
());
assertEquals
(
1
,
test
.
sizeNonResident
());
assertFalse
(
test
.
isEmpty
());
// changing the limit is not supposed to modify the map
...
...
@@ -284,17 +299,17 @@ public class TestCacheLongKeyLIRS extends TestBase {
}
private
void
testLimitHot
()
{
CacheLongKeyLIRS
<
Integer
>
test
=
CacheLongKeyLIRS
.
newInstanc
e
(
100
);
CacheLongKeyLIRS
<
Integer
>
test
=
createCach
e
(
100
);
for
(
int
i
=
0
;
i
<
300
;
i
++)
{
test
.
put
(
i
,
10
*
i
);
}
//
assertEquals(100, test.size());
//
assertEquals(99, test.sizeNonResident());
//
assertEquals(93, test.sizeHot());
assertEquals
(
100
,
test
.
size
());
assertEquals
(
99
,
test
.
sizeNonResident
());
assertEquals
(
93
,
test
.
sizeHot
());
}
private
void
testLimitNonResident
()
{
CacheLongKeyLIRS
<
Integer
>
test
=
CacheLongKeyLIRS
.
newInstanc
e
(
4
);
CacheLongKeyLIRS
<
Integer
>
test
=
createCach
e
(
4
);
for
(
int
i
=
0
;
i
<
20
;
i
++)
{
test
.
put
(
i
,
10
*
i
);
}
...
...
@@ -305,7 +320,7 @@ public class TestCacheLongKeyLIRS extends TestBase {
boolean
log
=
false
;
int
size
=
20
;
// cache size 11 (10 hot, 1 cold)
CacheLongKeyLIRS
<
Integer
>
test
=
CacheLongKeyLIRS
.
newInstanc
e
(
size
/
2
+
1
);
CacheLongKeyLIRS
<
Integer
>
test
=
createCach
e
(
size
/
2
+
1
);
// init the cache with some dummy entries
for
(
int
i
=
0
;
i
<
size
;
i
++)
{
test
.
put
(-
i
,
-
i
*
10
);
...
...
@@ -359,7 +374,7 @@ public class TestCacheLongKeyLIRS extends TestBase {
int
size
=
10
;
Random
r
=
new
Random
(
1
);
for
(
int
j
=
0
;
j
<
100
;
j
++)
{
CacheLongKeyLIRS
<
Integer
>
test
=
CacheLongKeyLIRS
.
newInstanc
e
(
size
/
2
);
CacheLongKeyLIRS
<
Integer
>
test
=
createCach
e
(
size
/
2
);
HashMap
<
Integer
,
Integer
>
good
=
New
.
hashMap
();
for
(
int
i
=
0
;
i
<
10000
;
i
++)
{
int
key
=
r
.
nextInt
(
size
);
...
...
@@ -400,7 +415,7 @@ public class TestCacheLongKeyLIRS extends TestBase {
}
}
private
static
<
V
>
String
toString
(
CacheLongKeyLIRS
<
V
>
cache
)
{
private
static
<
K
,
V
>
String
toString
(
CacheLongKeyLIRS
<
V
>
cache
)
{
StringBuilder
buff
=
new
StringBuilder
();
buff
.
append
(
"mem: "
+
cache
.
getUsedMemory
());
buff
.
append
(
" stack:"
);
...
...
@@ -418,10 +433,10 @@ public class TestCacheLongKeyLIRS extends TestBase {
return
buff
.
toString
();
}
private
<
V
>
void
verify
(
CacheLongKeyLIRS
<
V
>
cache
,
String
expected
)
{
private
<
K
,
V
>
void
verify
(
CacheLongKeyLIRS
<
V
>
cache
,
String
expected
)
{
if
(
expected
!=
null
)
{
String
got
=
toString
(
cache
);
//
assertEquals(expected, got);
assertEquals
(
expected
,
got
);
}
int
mem
=
0
;
for
(
long
k
:
cache
.
keySet
())
{
...
...
@@ -437,10 +452,18 @@ public class TestCacheLongKeyLIRS extends TestBase {
hot
.
removeAll
(
nonResident
);
assertEquals
(
hot
.
size
(),
cache
.
sizeHot
());
assertEquals
(
hot
.
size
()
+
cold
.
size
(),
cache
.
size
());
// if (stack.size() > 0) {
// long lastStack = stack.get(stack.size() - 1);
// assertTrue(hot.contains(lastStack));
// }
if
(
stack
.
size
()
>
0
)
{
long
lastStack
=
stack
.
get
(
stack
.
size
()
-
1
);
assertTrue
(
hot
.
contains
(
lastStack
));
}
}
private
static
<
V
>
CacheLongKeyLIRS
<
V
>
createCache
(
int
maxElements
)
{
return
createCache
(
maxElements
,
1
);
}
private
static
<
V
>
CacheLongKeyLIRS
<
V
>
createCache
(
int
maxSize
,
int
averageSize
)
{
return
CacheLongKeyLIRS
.
newInstance
(
maxSize
,
averageSize
,
1
,
0
);
}
}
h2/src/tools/org/h2/dev/store/btree/CacheLIRS.java
deleted
100644 → 0
浏览文件 @
f3864e40
差异被折叠。
点击展开。
h2/src/tools/org/h2/dev/store/btree/MVStore.java
浏览文件 @
749d0823
...
...
@@ -15,9 +15,10 @@ import java.util.Collections;
import
java.util.Comparator
;
import
java.util.HashMap
;
import
java.util.Iterator
;
import
java.util.Map
;
import
org.h2.compress.CompressLZF
;
import
org.h2.compress.Compressor
;
import
org.h2.dev.store.FilePathCache
;
import
org.h2.dev.store.cache.CacheLongKeyLIRS
;
import
org.h2.store.fs.FilePath
;
import
org.h2.store.fs.FileUtils
;
import
org.h2.util.New
;
...
...
@@ -90,7 +91,8 @@ public class MVStore {
private
int
blockSize
=
4
*
1024
;
private
long
rootChunkStart
;
private
Map
<
Long
,
Page
>
cache
=
CacheLIRS
.
newInstance
(
readCacheSize
,
2048
);
private
CacheLongKeyLIRS
<
Page
>
cache
=
CacheLongKeyLIRS
.
newInstance
(
readCacheSize
,
2048
,
16
,
readCacheSize
/
100
);
private
int
lastChunkId
;
private
HashMap
<
Integer
,
Chunk
>
chunks
=
New
.
hashMap
();
...
...
@@ -124,7 +126,9 @@ public class MVStore {
private
MVStore
(
String
fileName
,
MapFactory
mapFactory
)
{
this
.
fileName
=
fileName
;
this
.
mapFactory
=
mapFactory
;
this
.
compressor
=
mapFactory
.
buildCompressor
();
this
.
compressor
=
mapFactory
==
null
?
new
CompressLZF
()
:
mapFactory
.
buildCompressor
();
}
/**
...
...
h2/src/tools/org/h2/dev/store/
btree/CacheConcurrent
LIRS.java
→
h2/src/tools/org/h2/dev/store/
cache/Cache
LIRS.java
浏览文件 @
749d0823
/*
* Copyright 2012 H2 Group (http://h2database.com).
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* Copyright 2004-2012 H2 Group. Multiple-Licensed under the H2 License,
* Version 1.0, and under the Eclipse Public License, Version 1.0
* (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package
org
.
h2
.
dev
.
store
.
btre
e
;
package
org
.
h2
.
dev
.
store
.
cach
e
;
import
java.util.AbstractMap
;
import
java.util.ArrayList
;
...
...
@@ -23,7 +13,6 @@ import java.util.HashSet;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Set
;
import
java.util.concurrent.ConcurrentMap
;
/**
* A scan resistant cache. It is meant to cache objects that are relatively
...
...
@@ -54,7 +43,7 @@ import java.util.concurrent.ConcurrentMap;
* @param <K> the key type
* @param <V> the value type
*/
public
class
Cache
ConcurrentLIRS
<
K
,
V
>
extends
AbstractMap
<
K
,
V
>
implements
Concurrent
Map
<
K
,
V
>
{
public
class
Cache
LIRS
<
K
,
V
>
extends
AbstractMap
<
K
,
V
>
implements
Map
<
K
,
V
>
{
/**
* The maximum memory this cache should use.
...
...
@@ -73,7 +62,7 @@ public class CacheConcurrentLIRS<K, V> extends AbstractMap<K, V> implements Conc
private
int
segmentMask
;
private
final
int
stackMoveDistance
;
private
Cache
Concurrent
LIRS
(
long
maxMemory
,
int
averageMemory
,
int
segmentCount
,
int
stackMoveDistance
)
{
private
CacheLIRS
(
long
maxMemory
,
int
averageMemory
,
int
segmentCount
,
int
stackMoveDistance
)
{
setMaxMemory
(
maxMemory
);
setAverageMemory
(
averageMemory
);
if
(
Integer
.
bitCount
(
segmentCount
)
!=
1
)
{
...
...
@@ -89,8 +78,9 @@ public class CacheConcurrentLIRS<K, V> extends AbstractMap<K, V> implements Conc
segmentMask
=
segmentCount
-
1
;
segments
=
new
Segment
[
segmentCount
];
for
(
int
i
=
0
;
i
<
segmentCount
;
i
++)
{
long
max
=
Math
.
max
(
1
,
maxMemory
/
segmentCount
);
segments
[
i
]
=
new
Segment
<
K
,
V
>(
1
+
maxMemory
/
segmentCount
,
averageMemory
,
stackMoveDistance
);
max
,
averageMemory
,
stackMoveDistance
);
}
segmentShift
=
Integer
.
numberOfTrailingZeros
(
segments
[
0
].
sizeMapArray
());
}
...
...
@@ -150,26 +140,6 @@ public class CacheConcurrentLIRS<K, V> extends AbstractMap<K, V> implements Conc
return
put
(
key
,
value
,
averageMemory
);
}
public
V
putIfAbsent
(
K
key
,
V
value
)
{
int
hash
=
getHash
(
key
);
return
getSegment
(
hash
).
putIfAbsent
(
key
,
hash
,
value
);
}
public
boolean
remove
(
Object
key
,
Object
value
)
{
int
hash
=
getHash
(
key
);
return
getSegment
(
hash
).
remove
(
key
,
hash
,
value
);
}
public
boolean
replace
(
K
key
,
V
oldValue
,
V
newValue
)
{
int
hash
=
getHash
(
key
);
return
getSegment
(
hash
).
replace
(
key
,
hash
,
oldValue
,
newValue
);
}
public
V
replace
(
K
key
,
V
value
)
{
int
hash
=
getHash
(
key
);
return
getSegment
(
hash
).
replace
(
key
,
hash
,
value
);
}
/**
* Remove an entry. Both resident and non-resident entries can be removed.
*
...
...
@@ -233,38 +203,39 @@ public class CacheConcurrentLIRS<K, V> extends AbstractMap<K, V> implements Conc
}
/**
* Set the average memory used per entry. It is used to calculate the length
* of the internal array.
* Set the maximum memory this cache should use. This will not immediately
* cause entries to get removed however; it will only change the limit. To
* resize the internal array, call the clear method.
*
* @param
averageMemory the average memory used
(1 or larger)
* @param
maxMemory the maximum size
(1 or larger)
*/
public
void
set
AverageMemory
(
int
average
Memory
)
{
if
(
average
Memory
<=
0
)
{
throw
new
IllegalArgumentException
(
"
Average
memory must be larger than 0"
);
public
void
set
MaxMemory
(
long
max
Memory
)
{
if
(
max
Memory
<=
0
)
{
throw
new
IllegalArgumentException
(
"
Max
memory must be larger than 0"
);
}
this
.
averageMemory
=
average
Memory
;
this
.
maxMemory
=
max
Memory
;
if
(
segments
!=
null
)
{
long
max
=
1
+
maxMemory
/
segments
.
length
;
for
(
Segment
<
K
,
V
>
s
:
segments
)
{
s
.
set
AverageMemory
(
averageMemory
);
s
.
set
MaxMemory
(
max
);
}
}
}
/**
* Set the maximum memory this cache should use. This will not immediately
* cause entries to get removed however; it will only change the limit. To
* resize the internal array, call the clear method.
* Set the average memory used per entry. It is used to calculate the length
* of the internal array.
*
* @param
maxMemory the maximum size
(1 or larger)
* @param
averageMemory the average memory used
(1 or larger)
*/
public
void
set
MaxMemory
(
long
max
Memory
)
{
if
(
max
Memory
<=
0
)
{
throw
new
IllegalArgumentException
(
"
Max
memory must be larger than 0"
);
public
void
set
AverageMemory
(
int
average
Memory
)
{
if
(
average
Memory
<=
0
)
{
throw
new
IllegalArgumentException
(
"
Average
memory must be larger than 0"
);
}
this
.
maxMemory
=
max
Memory
;
this
.
averageMemory
=
average
Memory
;
if
(
segments
!=
null
)
{
for
(
Segment
<
K
,
V
>
s
:
segments
)
{
s
.
set
MaxMemory
(
1
+
maxMemory
/
segments
.
length
);
s
.
set
AverageMemory
(
averageMemory
);
}
}
}
...
...
@@ -295,8 +266,8 @@ public class CacheConcurrentLIRS<K, V> extends AbstractMap<K, V> implements Conc
* @param maxEntries the maximum number of entries
* @return the cache
*/
public
static
<
K
,
V
>
Cache
Concurrent
LIRS
<
K
,
V
>
newInstance
(
int
maxEntries
)
{
return
new
Cache
Concurrent
LIRS
<
K
,
V
>(
maxEntries
,
1
,
16
,
maxEntries
/
100
);
public
static
<
K
,
V
>
CacheLIRS
<
K
,
V
>
newInstance
(
int
maxEntries
)
{
return
new
CacheLIRS
<
K
,
V
>(
maxEntries
,
1
,
16
,
maxEntries
/
100
);
}
/**
...
...
@@ -309,9 +280,9 @@ public class CacheConcurrentLIRS<K, V> extends AbstractMap<K, V> implements Conc
* of the stack before the current item is moved
* @return the cache
*/
public
static
<
K
,
V
>
Cache
ConcurrentLIRS
<
K
,
V
>
newInstance
(
int
max
Memory
,
int
averageMemory
,
int
segmentCount
,
int
stackMoveDistance
)
{
return
new
Cache
Concurrent
LIRS
<
K
,
V
>(
maxMemory
,
averageMemory
,
segmentCount
,
stackMoveDistance
);
public
static
<
K
,
V
>
Cache
LIRS
<
K
,
V
>
newInstance
(
int
maxMemory
,
int
average
Memory
,
int
segmentCount
,
int
stackMoveDistance
)
{
return
new
CacheLIRS
<
K
,
V
>(
maxMemory
,
averageMemory
,
segmentCount
,
stackMoveDistance
);
}
/**
...
...
@@ -645,50 +616,6 @@ public class CacheConcurrentLIRS<K, V> extends AbstractMap<K, V> implements Conc
return
old
;
}
synchronized
V
putIfAbsent
(
K
key
,
int
hash
,
V
value
)
{
Entry
<
K
,
V
>
e
=
find
(
key
,
hash
);
if
(
e
!=
null
&&
e
.
value
!=
null
)
{
return
e
.
value
;
}
return
put
(
key
,
hash
,
value
,
averageMemory
);
}
synchronized
boolean
remove
(
Object
key
,
int
hash
,
Object
value
)
{
Entry
<
K
,
V
>
e
=
find
(
key
,
hash
);
if
(
e
!=
null
)
{
V
x
=
e
.
value
;
if
(
x
!=
null
&&
x
.
equals
(
value
))
{
remove
(
key
,
hash
);
return
true
;
}
}
return
false
;
}
synchronized
boolean
replace
(
K
key
,
int
hash
,
V
oldValue
,
V
newValue
)
{
Entry
<
K
,
V
>
e
=
find
(
key
,
hash
);
if
(
e
!=
null
)
{
V
x
=
e
.
value
;
if
(
x
!=
null
&&
x
.
equals
(
oldValue
))
{
put
(
key
,
hash
,
newValue
,
averageMemory
);
return
true
;
}
}
return
false
;
}
synchronized
V
replace
(
K
key
,
int
hash
,
V
value
)
{
Entry
<
K
,
V
>
e
=
find
(
key
,
hash
);
if
(
e
!=
null
)
{
V
x
=
e
.
value
;
if
(
x
!=
null
)
{
put
(
key
,
hash
,
value
,
averageMemory
);
return
x
;
}
}
return
null
;
}
synchronized
V
remove
(
Object
key
,
int
hash
)
{
int
index
=
hash
&
mask
;
Entry
<
K
,
V
>
e
=
entries
[
index
];
...
...
@@ -891,15 +818,6 @@ public class CacheConcurrentLIRS<K, V> extends AbstractMap<K, V> implements Conc
return
set
;
}
synchronized
Set
<
Map
.
Entry
<
K
,
V
>>
entrySet
()
{
HashMap
<
K
,
V
>
map
=
new
HashMap
<
K
,
V
>();
for
(
K
k
:
keySet
())
{
int
hash
=
getHash
(
k
);
map
.
put
(
k
,
find
(
k
,
hash
).
value
);
}
return
map
.
entrySet
();
}
int
sizeHot
()
{
return
mapSize
-
queueSize
-
queue2Size
;
}
...
...
@@ -923,10 +841,6 @@ public class CacheConcurrentLIRS<K, V> extends AbstractMap<K, V> implements Conc
this
.
maxMemory
=
maxMemory
;
}
long
getMaxMemory
()
{
return
maxMemory
;
}
void
setAverageMemory
(
int
averageMemory
)
{
if
(
averageMemory
<=
0
)
{
throw
new
IllegalArgumentException
(
"Average memory must be larger than 0"
);
...
...
h2/src/tools/org/h2/dev/store/
btre
e/CacheLongKeyLIRS.java
→
h2/src/tools/org/h2/dev/store/
cach
e/CacheLongKeyLIRS.java
浏览文件 @
749d0823
/*
* Copyright 2004-201
1
H2 Group. Multiple-Licensed under the H2 License,
* Copyright 2004-201
2
H2 Group. Multiple-Licensed under the H2 License,
* Version 1.0, and under the Eclipse Public License, Version 1.0
* (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package
org
.
h2
.
dev
.
store
.
btre
e
;
package
org
.
h2
.
dev
.
store
.
cach
e
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
...
...
@@ -31,9 +31,11 @@ import java.util.Set;
* prevent unbound memory usage. The maximum size of this queue is at most the
* size of the rest of the stack. About 6.25% of the mapped entries are cold.
* <p>
* Internally, the cache is split into 16 segments, and each segment is an
* individual LIRS cache. Accessed entries are only moved to the top of the
* stack if at least 20 other entries have been moved to the front. Write access
* Internally, the cache is split into a number of segments, and each segment is
* an individual LIRS cache.
* <p>
* Accessed entries are only moved to the top of the stack if at least a number
* of other entries have been moved to the front (1% by default). Write access
* and moving entries to the top of the stack is synchronized per segment.
*
* @author Thomas Mueller
...
...
@@ -74,8 +76,9 @@ public class CacheLongKeyLIRS<V> {
segmentMask
=
segmentCount
-
1
;
segments
=
new
Segment
[
segmentCount
];
for
(
int
i
=
0
;
i
<
segmentCount
;
i
++)
{
long
max
=
Math
.
max
(
1
,
maxMemory
/
segmentCount
);
segments
[
i
]
=
new
Segment
<
V
>(
1
+
maxMemory
/
segmentCount
,
averageMemory
,
stackMoveDistance
);
max
,
averageMemory
,
stackMoveDistance
);
}
segmentShift
=
Integer
.
numberOfTrailingZeros
(
segments
[
0
].
sizeMapArray
());
}
...
...
@@ -266,12 +269,13 @@ public class CacheLongKeyLIRS<V> {
}
/**
* Create a new cache with the given memory size. To just limit the number
* of entries, use the required number as the maximum memory, and an average
* size of 1.
* Create a new cache with the given memory size.
*
* @param maxMemory the maximum memory to use (1 or larger)
* @param averageMemory the average memory (1 or larger)
* @param segmentCount the number of cache segments (must be a power of 2)
* @param stackMoveDistance how many other item are to be moved to the top
* of the stack before the current item is moved
* @return the cache
*/
public
static
<
V
>
CacheLongKeyLIRS
<
V
>
newInstance
(
int
maxMemory
,
int
averageMemory
,
...
...
@@ -279,6 +283,32 @@ public class CacheLongKeyLIRS<V> {
return
new
CacheLongKeyLIRS
<
V
>(
maxMemory
,
averageMemory
,
segmentCount
,
stackMoveDistance
);
}
/**
* Get the entry set for all resident entries.
*
* @return the entry set
*/
public
synchronized
Set
<
Map
.
Entry
<
Long
,
V
>>
entrySet
()
{
HashMap
<
Long
,
V
>
map
=
new
HashMap
<
Long
,
V
>();
for
(
long
k
:
keySet
())
{
map
.
put
(
k
,
find
(
k
).
value
);
}
return
map
.
entrySet
();
}
/**
* Get the set of keys for resident entries.
*
* @return the set of keys
*/
public
synchronized
Set
<
Long
>
keySet
()
{
HashSet
<
Long
>
set
=
new
HashSet
<
Long
>();
for
(
Segment
<
V
>
s
:
segments
)
{
set
.
addAll
(
s
.
keySet
());
}
return
set
;
}
/**
* Get the number of non-resident entries in the cache.
*
...
...
@@ -306,16 +336,45 @@ public class CacheLongKeyLIRS<V> {
}
/**
* Get the
entry set for all resident entries
.
* Get the
number of hot entries in the cache
.
*
* @return the
entry set
* @return the
number of hot entries
*/
public
Set
<
Long
>
keySe
t
()
{
HashSet
<
Long
>
set
=
new
HashSet
<
Long
>()
;
public
int
sizeHo
t
()
{
int
x
=
0
;
for
(
Segment
<
V
>
s
:
segments
)
{
set
.
addAll
(
s
.
keySet
()
);
x
+=
s
.
sizeHot
(
);
}
return
set
;
return
x
;
}
/**
* Get the number of resident entries.
*
* @return the number of entries
*/
public
int
size
()
{
int
x
=
0
;
for
(
Segment
<
V
>
s
:
segments
)
{
x
+=
s
.
size
();
}
return
x
;
}
/**
* Get the list of keys. This method allows to read the internal state of
* the cache.
*
* @param cold if true, only keys for the cold entries are returned
* @param nonResident true for non-resident entries
* @return the key list
*/
public
synchronized
List
<
Long
>
keys
(
boolean
cold
,
boolean
nonResident
)
{
ArrayList
<
Long
>
keys
=
new
ArrayList
<
Long
>();
for
(
Segment
<
V
>
s
:
segments
)
{
keys
.
addAll
(
s
.
keys
(
cold
,
nonResident
));
}
return
keys
;
}
/**
...
...
@@ -338,15 +397,6 @@ public class CacheLongKeyLIRS<V> {
return
size
()
==
0
;
}
/**
* Get the entry set for all resident entries.
*
* @return the entry set
*/
public
Set
<
Map
.
Entry
<
Long
,
V
>>
entrySet
()
{
return
getMap
().
entrySet
();
}
public
boolean
containsValue
(
Object
value
)
{
return
getMap
().
containsValue
(
value
);
}
...
...
@@ -362,32 +412,6 @@ public class CacheLongKeyLIRS<V> {
return
map
;
}
/**
* Get the number of hot entries in the cache.
*
* @return the number of hot entries
*/
public
int
sizeHot
()
{
int
x
=
0
;
for
(
Segment
<
V
>
s
:
segments
)
{
x
+=
s
.
sizeHot
();
}
return
x
;
}
/**
* Get the number of resident entries.
*
* @return the number of entries
*/
public
int
size
()
{
int
x
=
0
;
for
(
Segment
<
V
>
s
:
segments
)
{
x
+=
s
.
size
();
}
return
x
;
}
public
void
putAll
(
Map
<
Long
,
?
extends
V
>
m
)
{
for
(
Map
.
Entry
<
Long
,
?
extends
V
>
e
:
m
.
entrySet
())
{
// copy only non-null entries
...
...
@@ -395,22 +419,6 @@ public class CacheLongKeyLIRS<V> {
}
}
/**
* Get the list of keys. This method allows to read the internal state of
* the cache.
*
* @param cold if true, only keys for the cold entries are returned
* @param nonResident true for non-resident entries
* @return the key list
*/
public
synchronized
List
<
Long
>
keys
(
boolean
cold
,
boolean
nonResident
)
{
ArrayList
<
Long
>
keys
=
new
ArrayList
<
Long
>();
for
(
Segment
<
V
>
s
:
segments
)
{
keys
.
addAll
(
s
.
keys
(
cold
,
nonResident
));
}
return
keys
;
}
/**
* A cache segment
*
...
...
@@ -838,7 +846,7 @@ public class CacheLongKeyLIRS<V> {
return
e
!=
null
&&
e
.
value
!=
null
;
}
Set
<
Long
>
keySet
()
{
synchronized
Set
<
Long
>
keySet
()
{
HashSet
<
Long
>
set
=
new
HashSet
<
Long
>();
for
(
Entry
<
V
>
e
=
stack
.
stackNext
;
e
!=
stack
;
e
=
e
.
stackNext
)
{
set
.
add
(
e
.
key
);
...
...
@@ -872,10 +880,6 @@ public class CacheLongKeyLIRS<V> {
this
.
maxMemory
=
maxMemory
;
}
long
getMaxMemory
()
{
return
maxMemory
;
}
void
setAverageMemory
(
int
averageMemory
)
{
if
(
averageMemory
<=
0
)
{
throw
new
IllegalArgumentException
(
"Average memory must be larger than 0"
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论