featurebase/storage/config.go
Matthew Jaffee 69c00a92ad remove a bunch of roaring backend stuff
snapshotQueue, op tracking, roaring-only tests
2022-02-02 20:56:18 -06:00

27 lines
700 B
Go

// Copyright 2021 Molecula Corp. All rights reserved.
package storage
// public strings that pilosa/server/config.go can reference
const (
RBFBackend string = "rbf"
)
// DefaultBackend is set here. pilosa/server/config.go references it
// to set the default for pilosa server exeutable.
const DefaultBackend = RBFBackend
// Config represents configuration which applies to multiple storage engines.
type Config struct {
Backend string `toml:"backend"`
// Set before calling db.Open()
FsyncEnabled bool `toml:"fsync"`
}
// NewDefaultConfig returns a new Config with default values.
func NewDefaultConfig() *Config {
return &Config{
Backend: DefaultBackend,
FsyncEnabled: true,
}
}