sqlite

package
v0.0.0-...-2e1c697 Latest Latest
Warning

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

Go to latest
Published: Jul 20, 2026 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Overview

Package sqlite provides log state persistence backed by an sqlite database.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Opts

type Opts struct {
	// Path is the path the location of the underlying SQLite database file.
	Path string
	// MaxOpenConns sets to maximum number of open connections to the database.
	MaxOpenConns int
}

Opts represents options for the sqlite persistence layer.

type Persistence

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

Persistence is an implementation of witness.Persistence which knows how to use an sqlite database to safely store witness state.

func New

func New(ctx context.Context, opts Opts) (*Persistence, func() error, error)

New returns a persistence object that is backed by the provided database.

The returned shutdown func should be called once the persistence instance is no longer required.

func (*Persistence) AddLogs

func (p *Persistence) AddLogs(ctx context.Context, lc []config.Log) error

func (*Persistence) Init

func (p *Persistence) Init(ctx context.Context) error

func (*Persistence) Latest

func (p *Persistence) Latest(ctx context.Context, origin string) ([]byte, error)

func (*Persistence) Log

func (p *Persistence) Log(ctx context.Context, origin string) (config.Log, bool, error)

func (*Persistence) Logs

func (*Persistence) Update

func (p *Persistence) Update(ctx context.Context, origin string, f func([]byte) ([]byte, error)) error

Jump to

Keyboard shortcuts

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