micro/data/store/store.go

35 lines
622 B
Go
Raw Normal View History

2019-06-12 09:46:20 +03:00
// Package store is an interface for distribute data storage.
package store
2019-05-31 02:43:23 +03:00
import (
"errors"
"time"
2019-06-11 19:20:52 +03:00
2019-06-12 14:45:42 +03:00
"github.com/micro/go-micro/config/options"
2019-05-31 02:43:23 +03:00
)
var (
ErrNotFound = errors.New("not found")
)
2019-06-12 09:46:20 +03:00
// Store is a data storage interface
type Store interface {
2019-06-11 19:20:52 +03:00
// embed options
options.Options
2019-05-31 02:43:23 +03:00
// Dump the known records
Dump() ([]*Record, error)
// Read a record with key
Read(key string) (*Record, error)
// Write a record
Write(r *Record) error
// Delete a record with key
Delete(key string) error
}
// Record represents a data record
type Record struct {
2019-06-11 19:49:34 +03:00
Key string
Value []byte
Expiry time.Duration
2019-05-31 02:43:23 +03:00
}