Skip to content

Commit 0f45c08

Browse files
committed
update docs
1 parent 4d4ac3c commit 0f45c08

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Minimalist in-memory KV storage, powered by `HashMap` and `Minimal Quad Heap`, w
3333
- No third-party dependencies
3434
- High performance
3535
- Low memory usage
36-
- Use Quad Heap to reduce height and increase write speeds
36+
- Use quadruple heap to maintain the expiration time, effectively reduce the height of the tree, and improve the insertion performance
3737

3838
### Methods
3939

README_CN.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
### 简介:
1111

12-
极简的内存键值(KV)存储系统,其核心由 哈希表(HashMap) 和 最小四叉堆(Minimal Quad Heap) 构成,没有进行垃圾回收(GC)优化。
12+
极简的内存键值(KV)存储系统,其核心由哈希表(HashMap) 和最小四叉堆(Minimal Quad Heap) 构成,没有进行垃圾回收(GC)优化。
1313

1414
**缓存淘汰策略:**
1515

16-
1. 使用 Set 方法用于清理溢出的键值对
16+
1. Set 方法用于清理溢出的键值对
1717
2. 周期清理过期的键值对
1818

1919
### 原则:
@@ -29,9 +29,9 @@
2929

3030
1. 简单易用
3131
2. 无需第三方依赖
32-
3. 高速读写
32+
3. 高性能
3333
4. 内存占用低
34-
5. 使用四叉堆, 有效降低数高度, 提高插入性能
34+
5. 使用四叉堆维护过期时间, 有效降低树高度, 提高插入性能
3535

3636
### 方法:
3737

0 commit comments

Comments
 (0)