在Linux中,哪些类型的文件是内存映射的?
可以完全在内存中创建的 Linux 文件有哪些不同类型?
例如,可以创建管道文件,但是创建文件的位置(或文件路径的文件系统类型)是否会影响是否涉及磁盘访问?如果我在 ext3 文件系统中创建管道文件,是否会导致物理磁盘访问?
What are the different types of Linux files that can be created entirely in memory?
For example, a pipe file may be created, but does the location of where a file is created (or the filesystem type of the file's path) make a difference to whether a disk access is involved? If I create a pipe file in an ext3 file system, could a physical disk access result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我的脑海中,没有看任何书籍:D,我认为它是这样分解的:
mmap-able:
但
不可映射?
Off the top of my head, and without looking at any books :D, I think it breaks down like this:
mmap-able:
mmap-able but not a file?
un-memmappable?