Can I have more information? I mean, why this happen (technically speaking)?
Carter James
Data is being written. System shuts down. Data is left unusable.
Kevin Evans
Ok, but can It affect data files that I'm not using in that moment?
Andrew Thomas
e.g. open save file for registering gaym progress In the middle of dumping data Winblows decide to blowm Save file lays in the hard drive incomplete. Reboot happens Try to gaym like a good gayman "Save file is corrupt"
Levi Rogers
On winblows probably lmao
Logan Smith
It might affect anything that is open the moment the crahs happens. There's a chance, after the reboot, that windows might never recover, or your gaym never recovers, or your antivirus never recovers, or even your h/w never recovers.
Charles Anderson
"Data" means any data that is being written. You could be using it personally or it could be used by the OS for a task you do not see.
Nolan Howard
can data that is beeing read get corrupted?
Jackson Brown
>update windows 10 like a good boy >personal shit gets delet >mfw I use linux This
Typical windows user.
Thomas Ward
any half-way decent developer will write to a temp file, and then delete previous file and rename.
Jack Baker
Yes, if parts of the file were in the RAM, not yet synced/written on the disk.
Connor Hill
this. I forgot what it's called, but windows does this for performance.
Dominic Hill
Shouldn't storage journaling help mitigate that?
Luke Gomez
its called "write caching" and every operating system does this to speed up disk performance. The kernel usually has a thread periodically writing changed to the disk. Example: freebsd.org/cgi/man.cgi?query=syncer&sektion=4&n=1
Austin James
>every operating system does this to speed up disk performance with SSDs becoming cheaper and more ubiquitous, this is slowly becoming more useless.
Jose Watson
That may be the case for a desktop user, but not for a server. SSD speeds are still a lot slower than memory speeds
Tyler Gonzalez
>That may be the case for a desktop user, but not for a server. This thread isn't about servers.
>SSD speeds are still a lot slower than memory speed True, but still it's not really an inconvenience to the user.
Brandon Flores
Consider how inconsistent or outright unstable some cheaper SSDs are while writing, I'd say write caching is never going away, if for nothing else than smoothing performance. And of course, it'll always be useful for HDDs.