-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.go
69 lines (53 loc) · 1.25 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
package gobitcask
import "os"
type Options struct {
// 数据库存放数据的目录
DirPath string
// 数据文件的大小
DataFileSize int64
// 内存索引类型
IndexType IndexerType
// 每次写数据是否持久化
SyncWrite bool
// 累计写到一定阈值再进行持久化
BytesPerSync uint
// 启动时是否需要以 mmap 的方式加载
MMapAtStartup bool
}
// IteratorOptions 迭代器配置项
type IteratorOptions struct {
// 遍历前缀为指定值的 key,默认为空
Prefix []byte
// 是否反向迭代, 默认 false 正向迭代
Reverse bool
}
// WriteBatchOptions 批量写配置项
type WriteBatchOptions struct {
// 一个批次当中最大的数据量
MaxBatchNum uint
// 提交时是否 sync 持久化
SyncWrites bool
}
type IndexerType = int8
const (
// BTree 索引
BTree IndexerType = iota + 1
// B+Tree 索引, 索引在磁盘上
BPlusTree
)
var DefaultOption = Options{
DirPath: os.TempDir(),
DataFileSize: 256 * 1024 * 1024, // 256MB
IndexType: BTree,
SyncWrite: false,
BytesPerSync: 0,
MMapAtStartup: true,
}
var DefaultIteratorOption = IteratorOptions{
Prefix: nil,
Reverse: false,
}
var DefaultWriteBatchOptions = WriteBatchOptions{
MaxBatchNum: 10000,
SyncWrites: true,
}