Documentation ¶
Overview ¶
Package ethdb defines the interfaces for an Ethereum data store.
Index ¶
Constants ¶
const IdealBatchSize = 100 * 1024
Code using batches should try to add this much data to the batch. The value was determined empirically.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Batch ¶
type Batch interface { KeyValueWriter ValueSize() int // amount of data in the batch Write() error // Reset resets the batch for reuse Reset() // Replay replays the batch contents. Replay(w KeyValueWriter) error }
Batch is a write-only database that commits changes to its host database when Write is called. Batch cannot be used concurrently.
type Batcher ¶ added in v0.8.6
type Batcher interface { // NewBatch creates a write-only database that buffers changes to its host db // until a final write is called. NewBatch() Batch }
Batcher wraps the NewBatch method of a backing data store.
type Database ¶
type Database interface { Reader Writer Iteratee Batcher io.Closer Sync() error Stater Compact(start []byte, limit []byte) error }
Database contains all the methods required by the high level database to not only access the key-value data store but also the chain freezer.
type Iteratee ¶ added in v0.8.6
type Iteratee interface { // NewIterator creates a binary-alphabetical iterator over a subset // of database content with a particular key prefix, starting at a particular // initial key (or after, if it does not exist). // // Note: This method assumes that the prefix is NOT part of the start, so there's // no need for the caller to prepend the prefix to the start NewIterator(prefix []byte, start []byte) Iterator }
Iteratee wraps the NewIterator methods of a backing data store.
type Iterator ¶ added in v0.8.6
type Iterator interface { // Next moves the iterator to the next key/value pair. It returns whether the // iterator is exhausted. Next() bool // Error returns any accumulated error. Exhausting all the key/value pairs // is not considered to be an error. Error() error // Key returns the key of the current key/value pair, or nil if done. The caller // should not modify the contents of the returned slice, and its contents may // change on the next call to Next. Key() []byte // Value returns the value of the current key/value pair, or nil if done. The // caller should not modify the contents of the returned slice, and its contents // may change on the next call to Next. Value() []byte // Release releases associated resources. Release should always succeed and can // be called multiple times without causing error. Release() }
Iterator iterates over a database's key/value pairs in ascending key order.
When it encounters an error any seek will return false and will yield no key/ value pairs. The error can be queried by calling the Error method. Calling Release is still necessary.
An iterator must be released after use, but it is not necessary to read an iterator until exhaustion. An iterator is not safe for concurrent use, but it is safe to use multiple iterators concurrently.
type KeyValueReader ¶ added in v0.8.6
type KeyValueReader interface { // Has retrieves if a key is present in the key-value data store. Has(key []byte) (bool, error) // Get retrieves the given key if it's present in the key-value data store. Get(key []byte) ([]byte, error) }
KeyValueReader wraps the Has and Get method of a backing data store.
type KeyValueStore ¶ added in v0.8.6
type KeyValueStore interface { KeyValueReader KeyValueWriter io.Closer }
KeyValueStore contains all the methods required to allow handling different key-value data stores backing the high level database.
type KeyValueWriter ¶ added in v0.8.6
type KeyValueWriter interface { // Put inserts the given value into the key-value data store. Put(key []byte, value []byte) error // Delete removes the key from the key-value data store. Delete(key []byte) error }
KeyValueWriter wraps the Put method of a backing data store.
type Reader ¶ added in v0.8.6
type Reader interface { KeyValueReader }
Reader contains the methods required to read data from both key-value as well as immutable ancient data.
type Snapshot ¶ added in v0.8.6
type Snapshot interface { // Has retrieves if a key is present in the snapshot backing by a key-value // data store. Has(key []byte) (bool, error) // Get retrieves the given key if it's present in the snapshot backing by // key-value data store. Get(key []byte) ([]byte, error) // Release releases associated resources. Release should always succeed and can // be called multiple times without causing error. Release() }
type Snapshotter ¶ added in v0.8.6
type Snapshotter interface { // NewSnapshot creates a database snapshot based on the current state. // The created snapshot will not be affected by all following mutations // happened on the database. // Note don't forget to release the snapshot once it's used up, otherwise // the stale data will never be cleaned up by the underlying compactor. NewSnapshot() (Snapshot, error) }
Snapshotter wraps the Snapshot method of a backing data store.
type Stater ¶ added in v0.8.6
type Stater interface { // Stat returns a particular internal stat of the database. Stat(property string) (string, error) }
Stater wraps the Stat method of a backing data store.
type Writer ¶ added in v0.8.6
type Writer interface { KeyValueWriter }
Writer contains the methods required to write data to both key-value as well as immutable ancient data.