提交 1e776e6b authored 作者: Thomas Mueller's avatar Thomas Mueller

The default limit for in-place LOB objects was changed from 128 to 256 bytes.…

The default limit for in-place LOB objects was changed from 128 to 256 bytes. This is because each read creates a reference to a LOB, and maintaining the references is a big overhead. With the higher limit, less references are needed.
上级 2013ce7e
...@@ -217,7 +217,7 @@ public class Constants { ...@@ -217,7 +217,7 @@ public class Constants {
* The default maximum length of an LOB that is stored with the record * The default maximum length of an LOB that is stored with the record
* itself, and not in a separate place. * itself, and not in a separate place.
*/ */
public static final int DEFAULT_MAX_LENGTH_INPLACE_LOB = 128; public static final int DEFAULT_MAX_LENGTH_INPLACE_LOB = 256;
/** /**
* The default value for the maximum transaction log size. * The default value for the maximum transaction log size.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论