micro/store/store.go

31 lines
559 B
Go
Raw Normal View History

2019-06-12 07:46:20 +01:00
// Package store is an interface for distribute data storage.
package store
2019-05-31 00:43:23 +01:00
import (
"errors"
"time"
)
var (
ErrNotFound = errors.New("not found")
)
2019-06-12 07:46:20 +01:00
// Store is a data storage interface
type Store interface {
2019-10-23 22:05:39 +01:00
// List all the known records
List() ([]*Record, error)
2019-05-31 00:43:23 +01:00
// Read a record with key
2019-10-23 22:05:39 +01:00
Read(key ...string) ([]*Record, error)
2019-05-31 00:43:23 +01:00
// Write a record
2019-10-23 22:05:39 +01:00
Write(rec ...*Record) error
2019-05-31 00:43:23 +01:00
// Delete a record with key
2019-10-23 22:05:39 +01:00
Delete(key ...string) error
2019-05-31 00:43:23 +01:00
}
// Record represents a data record
type Record struct {
2019-06-11 17:49:34 +01:00
Key string
Value []byte
Expiry time.Duration
2019-05-31 00:43:23 +01:00
}