Documentation ¶
Index ¶
- Constants
- type Driver
- type EntriesIterator
- type Params
- type Store
- func (s *Store) Close()
- func (s *Store) Delete(ctx context.Context, key []byte) error
- func (s *Store) Get(ctx context.Context, key []byte) ([]byte, error)
- func (s *Store) Scan(ctx context.Context, start []byte) (kv.EntriesIterator, error)
- func (s *Store) Set(ctx context.Context, key, value []byte) error
- func (s *Store) SetIf(ctx context.Context, key, value, valuePredicate []byte) error
Constants ¶
View Source
const (
DriverName = "postgres"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EntriesIterator ¶
type EntriesIterator struct {
// contains filtered or unexported fields
}
func (*EntriesIterator) Close ¶
func (e *EntriesIterator) Close()
func (*EntriesIterator) Entry ¶
func (e *EntriesIterator) Entry() *kv.Entry
func (*EntriesIterator) Err ¶
func (e *EntriesIterator) Err() error
Err return the last scan error or the cursor error
Click to show internal directories.
Click to hide internal directories.