Documentation
¶
Overview ¶
Package dbconfig is a micropackage that contains storage DB configuration options.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BoltDBOptions ¶
type BoltDBOptions struct {
FilePath string `yaml:"FilePath"`
}
BoltDBOptions configuration for BoltDB.
type DBConfiguration ¶
type DBConfiguration struct { Type string `yaml:"Type"` LevelDBOptions LevelDBOptions `yaml:"LevelDBOptions"` BoltDBOptions BoltDBOptions `yaml:"BoltDBOptions"` }
DBConfiguration describes configuration for DB. Supported: 'levelDB', 'boltDB'.
type LevelDBOptions ¶
type LevelDBOptions struct {
DataDirectoryPath string `yaml:"DataDirectoryPath"`
}
LevelDBOptions configuration for LevelDB.
Click to show internal directories.
Click to hide internal directories.