Ramdisks and hard drives as cache devices
Ramdisks and hard drives as cache devices
Posted Jul 8, 2010 3:43 UTC (Thu) by wstearns (guest, #4102)In reply to: Bcache: Caching beyond just RAM by NightMonkey
Parent article: Bcache: Caching beyond just RAM
To add to Kent's answer, you could use a traditional (non-tmpfs) ramdisk as it's a full block device. In a sense you're overriding the cache strategy by devoting the ramdisk's memory to caching one or more performance critical filesystems. It might be useful in some situations even though the system as a whole has less efficient use of memory. Using a hard drive as cache might actually be useful if the block device/filesystem you're caching is over a slow link or significantly slower than the cache device. If your local drive hard drive is at least as large as the remote drive, you also have the option of using raid 1 and setting the remote drive to "write-mostly" (so that all reads come from the local drive except in case of drive failure; see "man mdadm").
