-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.go
85 lines (67 loc) · 1.7 KB
/
options.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package GoKeeper
import (
"os"
)
var DefaultOptions = Options{
DirPath: os.TempDir(), // 系统临时目录
//DirPath: "tmp/",
DataFileSize: 256 * 1024 * 1024, // 256MB
SyncWrites: false, // 默认关闭每次操作进行同步
BytesPerSync: 0,
IndexType: Btree,
MMapStartup: true,
MergeThreshold: 0.5,
}
type Options struct {
// 数据库数据目录
DirPath string
// 数据文件的大小
DataFileSize int64
// 每次写入数据后是否要对数据进行安全的持久化
SyncWrites bool
// 累计写到多少字节进行持久化
// Default: 0 表示不开启此功能
BytesPerSync uint
// 索引类型(Btree,ART....)
IndexType IndexType
// 是否在启动时进行 mmap 的加载
MMapStartup bool
// 数据文件合并的阈值,无效数组占总数据的多少
MergeThreshold float32
}
// IteratorOption 索引迭代器的配置项
type IteratorOption struct {
// 遍历前缀为指定值的 Key,默认为空
Prefix []byte
// 是否反向迭代
// 默认正向迭代
Reverse bool
}
var DefaultIteratorOption = IteratorOption{
Prefix: nil,
Reverse: false,
}
// WriteBatchOptions 批量写配置项
type WriteBatchOptions struct {
// 一个批次中最大的数据量
MaxBatchSize uint
// 每一次事务提交时是否持久化
SyncWrites bool
}
// DefaultWriteBatchOptions 默认配置
var DefaultWriteBatchOptions = WriteBatchOptions{
MaxBatchSize: 1000000,
SyncWrites: true,
}
// IndexType 索引类型
// 数据库默认是 Btree
// 还可以自己实现跳表,自适应基数树索引
type IndexType = int8
const (
// Btree 索引
Btree IndexType = iota + 1
// ART 自适应基数树索引
ART
// BPlusTree 索引
BPlusTree
)