本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
Archivist
/
GoJDB
關注
1
收藏
0
複製
0
程式碼
問題
1
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
added a madvise for record tables
master
Ludovic 'Archivist' Lagouardette
5 年之前
父節點
847bce9710
當前提交
3c2e6c561a
共有
2 個檔案被更改
,包括
6 行新增
和
0 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
;
}
Write
Preview
Loading…
取消
儲存