db

package
v0.0.0-...-f8b7a73 Latest Latest
Warning

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

Go to latest
Published: Mar 16, 2019 License: GPL-3.0 Imports: 9 Imported by: 0

Documentation

Overview

包DB实现了一个模拟存储,它将所有块数据保存在LevelDB数据库中。

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type GlobalStore

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

GlobalStore包含正在存储的LevelDB数据库 所有群节点的块数据。 使用关闭方法关闭GlobalStore需要 释放数据库使用的资源。

func NewGlobalStore

func NewGlobalStore(path string) (s *GlobalStore, err error)

NewGlobalStore创建了一个新的GlobalStore实例。

func (*GlobalStore) Close

func (s *GlobalStore) Close() error

close释放基础级别db使用的资源。

func (*GlobalStore) Delete

func (s *GlobalStore) Delete(addr common.Address, key []byte) error

删除删除对地址为addr的节点的块引用。

func (*GlobalStore) Export

func (s *GlobalStore) Export(w io.Writer) (n int, err error)

将包含所有块数据的tar存档导出到写入程序 商店。它返回导出的块的数量和错误。

func (*GlobalStore) Get

func (s *GlobalStore) Get(addr common.Address, key []byte) (data []byte, err error)

如果节点存在键为的块,则get返回块数据 地址地址。

func (*GlobalStore) HasKey

func (s *GlobalStore) HasKey(addr common.Address, key []byte) bool

haskey返回带有addr的节点是否包含键。

func (*GlobalStore) Import

func (s *GlobalStore) Import(r io.Reader) (n int, err error)

import从包含导出块数据的读卡器读取tar存档。 它返回导入的块的数量和错误。

func (*GlobalStore) NewNodeStore

func (s *GlobalStore) NewNodeStore(addr common.Address) *mock.NodeStore

new nodestore返回一个新的nodestore实例,用于检索和存储 仅对地址为的节点进行数据块处理。

func (*GlobalStore) Put

func (s *GlobalStore) Put(addr common.Address, key []byte, data []byte) error

Put保存带有地址addr的节点的块数据。

Jump to

Keyboard shortcuts

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