12Feb/130
How to: Using TPL Dataflow for multithreaded file compression
In this small tutorial I will show you how to use TPL Dataflow library with a quite trivial task - multithreaded file compression.
PreInit
We need to implement efficient compression of files using GZipStream
class in the System.IO.Compression
namespace. It is assumed that we will compress large files that can not fit entirely in memory. Read the full article...