storage

package
v0.0.0-...-0ff5682 Latest Latest
Warning

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

Go to latest
Published: Apr 15, 2024 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Service

type Service interface {
	NewTransaction() Tx
	Get(key []byte) ([]byte, error)
	Set(key []byte, value []byte) error
	GetKeysWithPrefix(prefix []byte, reverse ...bool) ([][]byte, error)
}

type Tx

type Tx interface {
	Commit() error
	Discard()
	Set(key []byte, value []byte) error
	Get(key []byte) ([]byte, error)
	Delete(key []byte) error
	GetKeysWithPrefix(prefix []byte, reverse ...bool) [][]byte
	FilterKeysWithPrefix(prefix []byte, from, to string) [][]byte
	GetValuesWithPrefix(prefix []byte, reverse ...bool) [][]byte
}

Directories

Path Synopsis
Code generated by MockGen.
Code generated by MockGen.

Jump to

Keyboard shortcuts

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