in reply to Re^2: Configurable IO buffersize?
in thread Configurable IO buffersize?
The way to do this is by adjusting what Microsoft calls the cluster size, what other vocabularies call the extent size. This the smallest unit of storage that NTFS will read/write on the disk and it will be contiguous. Doing this requires that you make a special logical drive and format it using the /A: option to the format command:
FORMAT <drive>: /FS:NTFS /A:<clustersize>
clustersize = 65536, that is the maximum size
So this drive is used like any other, except that every file it on it will take a minimum of 64K of space on the disk (even for a 1 byte file).
I have not benchmarked this on Windows NTFS, but I have on other OS/ file systems. I predict significant performance gains.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Configurable IO buffersize?
by BrowserUk (Patriarch) on Aug 01, 2011 at 16:22 UTC | |
by Marshall (Canon) on Aug 01, 2011 at 17:00 UTC | |
by BrowserUk (Patriarch) on Aug 01, 2011 at 22:23 UTC |