fs/io/GunzipReader: increase buffer size to 64 kB

Reduces I/O overhead while reading a compressed database file.
This commit is contained in:
Max Kellermann
2020-03-31 15:07:18 +02:00
parent 60f2116202
commit 9c3e1d450a
2 changed files with 3 additions and 1 deletions

View File

@@ -36,7 +36,7 @@ class GunzipReader final : public Reader {
z_stream z;
StaticFifoBuffer<Bytef, 4096> buffer;
StaticFifoBuffer<Bytef, 65536> buffer;
public:
/**