Hello, I came across zram recently and I’d like to know if I should use it, my laptop only has ~4GB of ram, and for the most part it’ll only stutter when I open multiple programs or a game, so would zram be adequate in my case?

Also, would the compressing and decompressing have a significant impact on my cpu?

  • @[email protected]
    link
    fedilink
    English
    42 days ago

    zram is only suitable if you have no swap. I’d you have swap, zswap does a better job. It also compresses pages in memory, but swaps the least recently used pages to disk when pressured.

  • @[email protected]
    link
    fedilink
    English
    163 days ago

    Try it. The worst that happens is that it makes things slower and then you turn it back off.

    • DasFaultier
      link
      English
      63 days ago

      This. I’ve had nothing but great experiences with zram on resource constrained VMs in an enterprise grade cluster.

  • f00f/eris
    link
    fedilink
    English
    113 days ago

    The major tradeoff with zRAM is that programs are much more likely to crash due to running out of memory, but will run faster when memory is running low and freezes are less likely. You can think of it as offloading the pressure that traditional swap puts onto your disk, onto the (much faster) CPU. There will be an impact on CPU usage, but not enough to cause noticeable slowdown; in my experience running Linux, the CPU is almost never the reason something is slow, and is only going to be under significant pressure if you’re running a 3D game in software rendering, compiling a large program, or another complex CPU-bound task.

    I wouldn’t recommend making the switch unless you often encounter system freezes or slowness while running tasks that use a lot of RAM (like web browsing on certain sites, or gaming), but it will improve things in that case.

    • nore {she/her}OP
      link
      English
      73 days ago

      Thank you for the detailed response!

      I’m gonna give it a try in my current session and if it works I’ll make it permanent.

      One more thing I’d like to ask though is what would be an appropriate size for zram? Considering it grows dynamically 50% would probably be a good amount right?