useMmap property
bool?
get
useMmap
Indicates whether memory-mapped files should be used.
If true
, memory-mapped files will be used, which can improve performance
by allowing the operating system to manage memory more efficiently.
If false
or null
, memory-mapped files will not be used.
Implementation
bool? get useMmap => _useMmap;
set
useMmap
(bool? value)
Implementation
set useMmap(bool? value) {
_useMmap = value;
notifyListeners();
}