←back to thread

Why is Windows so slow?

(games.greggman.com)
337 points kristianp | 1 comments | | HN request time: 0s | source
Show context
prewett ◴[] No.3369039[source]
I suspect it has something to do with NTFS updating access times by default. So every time you do anything with a file, it gets its access time updated (not modification time, access time). I don't have windows to test on, but you could try the suggestions [1][2] below.

[1] http://msdn.microsoft.com/en-us/library/ms940846(v=winembedd...

[2] http://oreilly.com/pub/a/windows/2005/02/08/NTFS_Hacks.html (#8)

replies(4): >>3369044 #>>3369088 #>>3369139 #>>3369288 #
shintoist ◴[] No.3369044[source]
But most Linux distros do this by default as well. You have to mount with noatime to get rid of it.
replies(2): >>3369092 #>>3369099 #
1. wazoox ◴[] No.3369099[source]
In fact nowadays most (all?) linux filesystems use relatime as default, which carries most of the advantages of both atime and noatime. See http://kerneltrap.org/node/14148

I don't know if something similar exists under windows (I suppose it doesn't).