Use 32kb block size according to suggestion by Alec Wysoker

This commit is contained in:
Taro L. Saito 2011-06-10 10:18:57 +09:00
parent e321bee6c1
commit 7795673e0c
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ import java.io.OutputStream;
* This class implements a stream filter for writing compressed data using
* Snappy.
*
* The input data is blocked into 8kb size (in default), and each block is
* The input data is blocked into 32kb size (in default), and each block is
* compressed and then passed to the given {@link OutputStream}.
*
* The output data format is a sequence of (compressed chunk size, compressed
@ -42,7 +42,7 @@ import java.io.OutputStream;
*/
public class SnappyOutputStream extends OutputStream
{
static final int DEFAULT_BLOCK_SIZE = 8 * 1024; // Use 8kb for the default block size
static final int DEFAULT_BLOCK_SIZE = 32 * 1024; // Use 32kb for the default block size
protected final OutputStream out;
private final int blockSize;