dbmanager

package
v0.3.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 15, 2022 License: Apache-2.0, BSD-2-Clause Imports: 15 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ChainKVStoreProvider

type ChainKVStoreProvider func(chainID *isc.ChainID) kvstore.KVStore

type DB added in v0.3.0

type DB interface {
	// NewStore creates a new KVStore backed by the database.
	NewStore() kvstore.KVStore
	// Close closes a DB.
	Close() error

	// RequiresGC returns whether the database requires a call of GC() to clean deleted items.
	RequiresGC() bool
	// GC runs the garbage collection to clean deleted database items.
	GC() error
}

DB represents a database abstraction.

func NewDB added in v0.3.0

func NewDB(dirname string) (DB, error)

NewDB returns a new persisting DB object.

func NewMemDB added in v0.3.0

func NewMemDB() (DB, error)

NewMemDB returns a new in-memory (not persisted) DB object.

type DBManager

type DBManager struct {
	// contains filtered or unexported fields
}

func NewDBManager

func NewDBManager(log *logger.Logger, inMemory bool, databaseDir string, registryConfig *registry.Config) *DBManager

func (*DBManager) Close

func (m *DBManager) Close()

func (*DBManager) GetKVStore

func (m *DBManager) GetKVStore(chainID *isc.ChainID) kvstore.KVStore

func (*DBManager) GetOrCreateKVStore

func (m *DBManager) GetOrCreateKVStore(chainID *isc.ChainID) kvstore.KVStore

func (*DBManager) GetRegistryKVStore

func (m *DBManager) GetRegistryKVStore() kvstore.KVStore

func (*DBManager) RunGC

func (m *DBManager) RunGC(_ context.Context)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL