C# File IO with Streams - Best Memory Buffer Size

Posted by AJ on Stack Overflow See other posts from Stack Overflow or by AJ
Published on 2010-06-13T20:26:41Z Indexed on 2010/06/13 20:32 UTC
Read the original article Hit count: 538

Filed under:
|
|
|
|

Hi,

I am writing a small IO library to assist with a larger (hobby) project. A part of this library performs various functions on a file, which is read / written via the FileStream object. On each StreamReader.Read(...) pass, I fire off an event which will be used in the main app to display progress information. The processing that goes on in the loop is vaired, but is not too time consuming (it could just be a simple file copy, for example, or may involve encryption...).

My main question is: What is the best memory buffer size to use? Thinking about physical disk layouts, I could pick 2k, which would cover a CD sector size and is a nice multiple of a 512 byte hard disk sector. Higher up the abstraction tree, you could go for a larger buffer which could read an entire FAT cluster at a time. I realise with today's PC's, I could go for a more memory hungry option (a couple of MiB, for example), but then I increase the time between UI updates and the user perceives a less responsive app.

As an aside, I'm eventually hoping to provide a similar interface to files hosted on FTP / HTTP servers (over a local network / fastish DSL). What would be the best memory buffer size for those (again, a "best-case" tradeoff between perceived responsiveness vs. performance).

Thanks in advance for any ideas, Adam

© Stack Overflow or respective owner

Related posts about c#

Related posts about optimization