Documentation ¶
Overview ¶
包DB实现了一个模拟存储,它将所有块数据保存在LevelDB数据库中。
Index ¶
- type GlobalStore
- func (s *GlobalStore) Close() error
- func (s *GlobalStore) Delete(addr common.Address, key []byte) error
- func (s *GlobalStore) Export(w io.Writer) (n int, err error)
- func (s *GlobalStore) Get(addr common.Address, key []byte) (data []byte, err error)
- func (s *GlobalStore) HasKey(addr common.Address, key []byte) bool
- func (s *GlobalStore) Import(r io.Reader) (n int, err error)
- func (s *GlobalStore) NewNodeStore(addr common.Address) *mock.NodeStore
- func (s *GlobalStore) Put(addr common.Address, key []byte, data []byte) error
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) 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) 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实例,用于检索和存储 仅对地址为的节点进行数据块处理。
Click to show internal directories.
Click to hide internal directories.