mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
27 lines
700 B
Go
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,
|
|
}
|
|
}
|