Reputation: 15788
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?
Upvotes: 5
Views: 438
Reputation: 28036
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?
Upvotes: 4