summaryrefslogtreecommitdiff
path: root/src/buildtool/storage/file_chunker.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/storage/file_chunker.hpp')
-rw-r--r--src/buildtool/storage/file_chunker.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/storage/file_chunker.hpp b/src/buildtool/storage/file_chunker.hpp
index f2aea001..914de3f0 100644
--- a/src/buildtool/storage/file_chunker.hpp
+++ b/src/buildtool/storage/file_chunker.hpp
@@ -32,7 +32,7 @@
/// A read buffer is used to progressively process the file content instead of
/// reading the entire file content in memory.
class FileChunker {
- static constexpr std::uint32_t kAverageChunkSize{1024 * 8}; // 8 KB
+ static constexpr std::uint32_t kAverageChunkSize{1024 * 128}; // 128 KB
static constexpr std::uint32_t kDefaultSeed{0};
public: