Are you sure you want to use MMAP in your database management system? [pdf]
1–10 of 137 posts
Re: Are you sure you want to use MMAP in your database management system? [pdf]
#2Re: Are you sure you want to use MMAP in your database management system? [pdf]
#3https://www.youtube.com/watch?v=1BRGU_AS25c
and this code: https://github.com/viktorleis/mmapbench
Re: Are you sure you want to use MMAP in your database management system? [pdf]
#4Re: Are you sure you want to use MMAP in your database management system? [pdf]
#5Re: Are you sure you want to use MMAP in your database management system? [pdf]
#6Re: Are you sure you want to use MMAP in your database management system? [pdf]
#7Re: Are you sure you want to use MMAP in your database management system? [pdf]
#8RavenDB's response to this paper: https://ayende.com/blog/196161-C/re-are-you-sure-you-want-to...
"If you aren’t using mmap, on the other hand, you still need to handle of all those issues"
Which seems like a reasonable statement. Is it less work to make your own top-to-bottom buffer pool, and would that necessarily avoid similar issues? Or is it less work to use mmap(), but address the issues?
Re: Are you sure you want to use MMAP in your database management system? [pdf]
#9Re: Are you sure you want to use MMAP in your database management system? [pdf]
#10RavenDB's response to this paper: https://ayende.com/blog/196161-C/re-are-you-sure-you-want-to...
The really key part seems to be this: "If you aren’t using mmap, on the other hand, you still need to handle of all those issues" Which seems like a reasonable statement. Is it less work to make your own top-to-bottom buffer pool, and would that necessarily avoid similar issues? Or is it less work to use mmap(), but address the issues?