Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
c3bf3a26
提交
c3bf3a26
authored
7月 25, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
The default MAX_LOG_SIZE is now 16 MB instead of 2 MB. Some uses cases are 3 times faster now.
上级
3b50a2de
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
45 行增加
和
1 行删除
+45
-1
Constants.java
h2/src/main/org/h2/engine/Constants.java
+45
-1
没有找到文件。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
c3bf3a26
...
...
@@ -121,7 +121,7 @@ public class Constants {
/**
* The default value for the maximum transaction log size.
*/
public
static
final
long
DEFAULT_MAX_LOG_SIZE
=
2
*
1024
*
1024
;
public
static
final
long
DEFAULT_MAX_LOG_SIZE
=
16
*
1024
*
1024
;
/**
* The default maximum length on an in-memory LOB object.
...
...
@@ -207,6 +207,50 @@ public class Constants {
*/
public
static
final
int
MAX_PARAMETER_INDEX
=
100000
;
/**
* The memory needed by a object of class Data
*/
public
static
final
int
MEMORY_DATA
=
24
;
/**
* This value is used to calculate the average memory usage.
*/
public
static
final
int
MEMORY_FACTOR
=
64
;
/**
* The memory needed by a regular object with at least one field.
*/
// Java 6, 64 bit: 24
// Java 6, 32 bit: 12
public
static
final
int
MEMORY_OBJECT
=
24
;
/**
* The memory needed by an object of class PageBtree.
*/
public
static
final
int
MEMORY_PAGE_BTREE
=
112
+
MEMORY_DATA
+
2
*
MEMORY_OBJECT
;
/**
* The memory needed by an object of class PageData.
*/
public
static
final
int
MEMORY_PAGE_DATA
=
144
+
MEMORY_DATA
+
3
*
MEMORY_OBJECT
;
/**
* The memory needed by an object of class PageDataOverflow.
*/
public
static
final
int
MEMORY_PAGE_DATA_OVERFLOW
=
96
+
MEMORY_DATA
;
/**
* The memory needed by a pointer.
*/
// Java 6, 64 bit: 8
// Java 6, 32 bit: 4
public
static
final
int
MEMORY_POINTER
=
8
;
/**
* The memory needed by a Row.
*/
public
static
final
int
MEMORY_ROW
=
40
;
/**
* The number of bytes in random salt that is used to hash passwords.
*/
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论