이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
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 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
;
}
쓰기
미리보기
불러오는 중...
취소
저장