home.social

#devdrive — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #devdrive, aggregated by home.social.

  1. I'm seeing an observable behavior difference in File.Replace() between Win10 NTFS and Win11 ReFS (DevDrive):

    github.com/KirillOsenkov/Misc/

    On regular C: drive I get two renames, on DevDrive I get a delete of the original + rename. Weird.

    #dotnet #devdrive #refs #ntfs

  2. First time poking around with Dev Drives, so doing a little performance testing by measuring `dotnet build` after `git clean -xdf` for @xunit (`main` branch).

    On NVMe (NTFS): 17.5s
    On SATA (NTFS): 17.9s
    On VHDX (ReFS): 14.4s
    On VHDX (ext4): 11.7s

    The top 3 are built in Windows, and the bottom 1 is built in WSL 2 (Ubuntu 22.04). I wanted to be able to compare the two VHDX options.

    Looks like Dev Drive is a win, but not as big as moving to Linux & ext4.

    #dev #DevDrive #NTFS #ReFS