Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Archivist
/
GoJDB
Segui
1
Vota
0
Forka
0
Codice
Problemi
1
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
added a madvise for record tables
master
Ludovic 'Archivist' Lagouardette
5 anni fa
parent
847bce9710
commit
3c2e6c561a
2 ha cambiato i file
con
6 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+2
-0
include/database.hpp
+4
-0
include/fsized_map.h
+ 2
- 0
include/database.hpp
Vedi File
@ -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
Vedi File
@ -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
;
}
Scrivi
Anteprima
Caricamento…
Annulla
Salva