Post History
Frontswap is a tmem interface in the kernel. The idea is to have a little faster RAM-like alternative to traditional(ly dreaded) swap. When memory pressure starts to mount, the kernel will ask fron...
#1: Initial revision
Frontswap is a `tmem` interface in the kernel. The idea is to have a little faster RAM-like alternative to traditional(ly dreaded) swap. When memory pressure starts to mount, the kernel will ask frontswap before swapping a page. Frontswap is just an interface, so it could have different backends actually storing the memory pages. A typical case would be [`zswap`](https://en.wikipedia.org/wiki/Zswap), which tries to compress the memory page (instead of letting swap write it to disk). A little dated source: https://lwn.net/Articles/454795/
