Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1.85 KB

doc.md

File metadata and controls

44 lines (36 loc) · 1.85 KB

ipfs-ethdb

IPFS has been extended to use Postgres as a backing datastore. Interfacing directly with the IPFS-backing Postgres database has some advantages over using the blockservice interface. Namely, batching of IPFS writes with other Postgres writes and avoiding lock contention on the ipfs repository (lockfile located at the IPFS_PATH). The downside is that we forgo the block-exchange capabilities of the blockservice, and are only able to fetch data contained in the local datastore.

Usage

To use this module import it and build an ethdb interface around an instance of sqlx.DB, you can then employ it as you would the blockservice-based ethdbs.

package main

import (
    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/core/state"
    "github.com/ethereum/go-ethereum/trie"
    "github.com/jmoiron/sqlx"
    "github.com/cerc-io/ipfs-ethdb/v5/postgres/v1"
)

func main() {
    connectStr := "postgresql://vdbm:password@localhost:8077/cerc_testing?sslmode=disable"
    db, _ := sqlx.Connect("postgres", connectStr)

    kvs := pgipfsethdb.NewKeyValueStore(db)
    trieDB := trie.NewDatabase(kvs)
    t, _ := trie.New(common.Hash{}, trieDB)
    trieNodeIterator := t.NodeIterator([]byte{})
    // do stuff with trie node iterator

    database := pgipfsethdb.NewDatabase(db, pgipfsethdb.CacheConfig{
		Name:           "db",
		Size:           3000000, // 3MB
		ExpiryDuration: time.Hour,
	})
    stateDatabase := state.NewDatabase(database)
    stateDB, _ := state.New(common.Hash{}, stateDatabase, nil)
    stateDBNodeIterator := state.NewNodeIterator(stateDB)
    // do stuff with the statedb node iterator
}