On Arch-based Linux systems, the term “Zswap shrinker enabled” typically refers to a feature related to Zswap, which is a compressed cache for swap pages. Zswap is a kernel feature that aims to improve the performance of swap operations by compressing pages before they are written to the swap device. This can help reduce the amount of I/O that occurs when the system runs out of RAM, potentially improving responsiveness.
Its not wrong to leave it on it helps not to oldering the Ssd
When there is a sizable amount of cold memory residing in the zswap pool, it can be advantageous to proactively write these cold pages to swap and reclaim the memory for other use cases. By default, the zswap shrinker is disabled. User can enable it as follows:
echo Y > /sys/module/zswap/parameters/shrinker_enabled
This can be enabled at the boot time if CONFIG_ZSWAP_SHRINKER_DEFAULT_ON is selected.
Cool feature! But when zswap is disabled it doesn’t actually do anything, so in our case it makes no difference if it is enabled or not (because we are using zram instead of zswap).
The reason the shrinker is enabled in the first place is the kernel you are using is compiled with the configuration parameter mentioned in the doc linked above.