|
|
|
|
|
by nextaccountic
164 days ago
|
|
> Consult the classic article on why sophisticated systems like DBMSs do not use mmap: https://db.cs.cmu.edu/mmap-cidr2022/ Sqlite does (or can optionally use mmap). How come? Is sqlite with mmap less reliable or anything? |
|
SQLite can use mmap(). That is a tested and supported capability. But we don't advocate it because of the inability to precisely identify I/O errors and report them back up into the application.