mem

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: 8 Imported by: 0

Documentation

Overview

package mem实现了一个模拟存储,将所有块数据保存在内存中。 虽然它可以用于小规模的测试,但其主要目的是 包是提供模拟存储的最简单的参考实现。

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存储所有块数据以及键和节点地址关系。 它实现mock.globalStore接口。

func NewGlobalStore

func NewGlobalStore() *GlobalStore

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

func (*GlobalStore) Delete

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

删除删除地址为的节点的块数据。

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