What is the best memory buffer size to allocate to download a file from Internet?

后端 未结 5 1248
难免孤独
难免孤独 2021-01-01 23:50

What is the best memory buffer size to allocate to download a file from Internet? Some of the samples said that it should be 1K. Well, I need to know in general why is it? A

5条回答
  •  独厮守ぢ
    2021-01-02 00:16

    Use at least 4KB. It's the normal page size for Windows (i.e. the granularity at which Windows itself manages memory), which means that the .Net memory allocator doesn't need to break down a 4KB page into 1KB allocations.

    Of course, using a 64KB block will be faster, but only marginally so.

提交回复
热议问题