You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some read-only files, the mmap can be used to improve the reading performance in read-only situation a lot. For example, when doing major compaction, reading the input SSTables by mmap may be more sufficient than just calling read().
In origin leveldb fs layer env, PosixMmapReadableFile is introduced for such cases.
The text was updated successfully, but these errors were encountered:
For some read-only files, the
mmap
can be used to improve the reading performance in read-only situation a lot. For example, when doing major compaction, reading the input SSTables bymmap
may be more sufficient than just callingread()
.In origin
leveldb
fs layerenv
,PosixMmapReadableFile
is introduced for such cases.The text was updated successfully, but these errors were encountered: