Where I live, DRAM-less SSDs are a lot cheaper (half the price). Most sources online say “go for an SSD with DRAM”. But I wonder, are cases in which a DRAM-less SSD will do just fine?

My main focus is resurrecting old laptops (from 2006 to 2015), installing GNU/Linux and an sometimes investing in an SSD will give them a performance boost, but the budget is limited because I can’t sella uch an old laptop at a non very budgety price.

  • @Blue_Morpho@lemmy.world
    link
    fedilink
    0
    edit-2
    4 months ago

    It allows the drive to be used more quickly

    But not anymore so than adding the same amount of dram to the PC. It’s cpu->cpu dram->SSD dram->ssd. It will only show a performance difference on benchmarks or if your PC ram is completely full. You could get more performance by adding dram to the PC and telling the OS to never go below X amount of disk cache.

    makes smaller transfers nearly instant, as data gets buffered into the much faster DRAM rather than directly to the SSD.

    That’s not actual speed but benchmark speed. A copy is going to PC cache and then gets written out to the SSD. Having SSD dram allows the SSD to say “done” sooner to the OS despite it taking the same total time.

    • Dave.
      link
      fedilink
      14 months ago

      Having SSD dram allows the SSD to say “done” sooner to the OS despite it taking the same total time.

      That’s exactly why. When writing to a drive the OS waits until the disk says “done” and then goes about it’s business.

      If the drive then takes an extra bit of time internally to write to permanent storage that’s none of the OS’s business as long as it can pull that written data from “somewhere” and deliver it to the OS if asked.

      • @Blue_Morpho@lemmy.world
        link
        fedilink
        2
        edit-2
        4 months ago

        But it gets “done” immediately when you have write caching enabled and the file fits in ram. Which is on by default for non removable storage. It’s only benchmarks which disable write caching in order to separate PC performance from the drive being tested.