Y
Hacker News
new
|
ask
|
show
|
jobs
by
bingaling
4662 days ago
Sounds like SSD's are used as a cache, like ZFS does with its l2arc.
2 comments
derefr
4662 days ago
For Linux specifically, there are
https://github.com/mingzhao/dm-cache
and
http://bcache.evilpiepirate.org/
as well, which let you use arbitrary filesystems on top. I would bet that Linode is using one or the other of these.
link
jevinskie
4662 days ago
Does ZFS use some sort of last-used eviction to purge the cache? It seems like differentiating between random/sequential IO is a bit different than LRU.
link
wmf
4662 days ago
The design is documented here:
https://github.com/zfsonlinux/zfs/blob/master/module/zfs/arc...
link