使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
Archivist
/
GoJDB
关注
1
点赞
0
派生
0
代码
工单
1
合并请求
0
版本发布
0
百科
动态
浏览代码
added a madvise for record tables
master
Ludovic 'Archivist' Lagouardette
5 年前
父节点
847bce9710
当前提交
3c2e6c561a
共有
2 个文件被更改
,包括
6 次插入
和
0 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+2
-0
include/database.hpp
+4
-0
include/fsized_map.h
+ 2
- 0
include/database.hpp
查看文件
@ -87,6 +87,8 @@ public:
tmp
.
clear
(
)
;
ret
.
records
.
enforce_caching
(
)
;
#
pragma GCC diagnostic push
#
pragma GCC diagnostic ignored "-Wreturn-local-addr"
return
std
:
:
move
(
ret
)
;
+ 4
- 0
include/fsized_map.h
查看文件
@ -157,6 +157,10 @@ class mmap_array : public mmap_ptr
posix_madvise
(
this
-
>
start
,
mapping_size
,
map_access
)
;
}
void
enforce_caching
(
)
{
posix_madvise
(
this
-
>
start
,
mapping_size
,
MADV_WILLNEED
)
;
}
constexpr
size_t
size
(
)
{
return
item_size
;
}
撰写
预览
正在加载...
取消
保存