|
|
|
|
|
by rogerbinns
344 days ago
|
|
Unless you compile SQLite yourself, you'll find the maximum mmap size is 2GB. ie even with your pragma above, only the first 2GB of the database are memory mapped. It is defined by the SQLITE_MAX_MMAP_SIZE compile time constant. You can use pragma compile_options to see what the value is. https://sqlite.org/compile.html#max_mmap_size Ubuntu system pragma compile_options: MAX_MMAP_SIZE=0x7fff0000
|
|