Hi!
I'm creating a data accusition system which needs to dump data to disk,
basically as fast as possible.
I've used aligned buffers (VirtualAlloc) and overlapped unbuffered IO
so far. The write speed is good, probably as good as it will get on my
system (~35 MB/sec).
I sort of expected to see a difference in speed when overwriting an
already created file versus writing to a new file (in the favor of the
already created file) because the old one would already be 'laid out'
on disk. Is this the case? I dont see a difference, but I got a lot of
space on my HD. Would it matter if the disk was almost full and badly
fragmented?
Thanks!