1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-11 17:18:28 +02:00
go-micro/store/store.go

32 lines
616 B
Go
Raw Normal View History

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