status-go/vendor/github.com/ipfs/go-ds-sql
Richard Ramos cf11713d9c
feat: wakuv2 peer persistence (#2287)
2021-10-12 08:39:28 -04:00
..
LICENSE feat: wakuv2 peer persistence (#2287) 2021-10-12 08:39:28 -04:00
README.md feat: wakuv2 peer persistence (#2287) 2021-10-12 08:39:28 -04:00
batching.go feat: wakuv2 peer persistence (#2287) 2021-10-12 08:39:28 -04:00
dstore.go feat: wakuv2 peer persistence (#2287) 2021-10-12 08:39:28 -04:00
go.mod feat: wakuv2 peer persistence (#2287) 2021-10-12 08:39:28 -04:00
go.sum feat: wakuv2 peer persistence (#2287) 2021-10-12 08:39:28 -04:00
package.json feat: wakuv2 peer persistence (#2287) 2021-10-12 08:39:28 -04:00
txn.go feat: wakuv2 peer persistence (#2287) 2021-10-12 08:39:28 -04:00

README.md

SQL Datastore

CircleCI Coverage Standard README GoDoc golang version Go Report Card

An implementation of the datastore interface that can be backed by any sql database.

Install

go get github.com/ipfs/go-ds-sql

Usage

Ensure a database is created and a table exists with key and data columns. For example, in PostgreSQL you can create a table with the following structure (replacing table_name with the name of the table the datastore will use - by default this is blocks):

CREATE TABLE IF NOT EXISTS table_name (key TEXT NOT NULL UNIQUE, data BYTEA)

It's recommended to create an index on the key column that is optimised for prefix scans. For example, in PostgreSQL you can create a text_pattern_ops index on the table:

CREATE INDEX IF NOT EXISTS table_name_key_text_pattern_ops_idx ON table_name (key text_pattern_ops)

Import and use in your application:

import (
	"database/sql"
	"github.com/ipfs/go-ds-sql"
	pg "github.com/ipfs/go-ds-sql/postgres"
)

mydb, _ := sql.Open("yourdb", "yourdbparameters")

// Implement the Queries interface for your SQL impl.
// ...or use the provided PostgreSQL queries
queries := pg.NewQueries("blocks")

ds := sqlds.NewDatastore(mydb, queries)

API

GoDoc Reference

Contribute

Feel free to dive in! Open an issue or submit PRs.

License

MIT