HHH-7066 use a larger buffer by default

This commit is contained in:
Sanne Grinovero 2012-02-14 17:11:19 +00:00
parent 818dd5959d
commit 98082feb11
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ import org.hibernate.type.descriptor.BinaryStream;
public class DataHelper {
/** The size of the buffer we will use to deserialize larger streams */
private static final int BUFFER_SIZE = 2048;
private static final int BUFFER_SIZE = 1024 * 4;
private static final CoreMessageLogger LOG = Logger.getMessageLogger( CoreMessageLogger.class, DataHelper.class.getName() );