-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.go
51 lines (41 loc) · 1.21 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
package renee
import "os"
type Options struct {
// DirPath specifies the directory path where the WAL segment files will be stored.
DirPath string
// Sync is whether to synchronize writes through os buffer cache and down onto the actual disk.
// Setting sync is required for durability of a single write operation, but also results in slower writes.
//
// If false, and the machine crashes, then some recent writes may be lost.
// Note that if it is just the process that crashes (machine does not) then no writes will be lost.
//
// In other words, Sync being false has the same semantics as a write
// system call. Sync being true means write followed by fsync.
Sync bool
// BytesPerSync specifies the number of bytes to write before calling fsync.
BytesPerSync uint32
// BackendStorage specifies the backend storage to use.
BackendStorage BackendStorage
}
type BackendStorage uint8
const (
Pebble BackendStorage = iota
Badger
Bolt
)
const (
B = 1
KB = 1024 * B
MB = 1024 * KB
GB = 1024 * MB
)
var DefaultOptions = Options{
DirPath: tempDBDir(),
Sync: false,
BytesPerSync: 0,
BackendStorage: Pebble,
}
func tempDBDir() string {
dir, _ := os.MkdirTemp("", "renee-temp")
return dir
}