2014-08-21 20:06:11 +00:00
|
|
|
package index
|
|
|
|
|
2014-09-10 16:41:52 +00:00
|
|
|
import "encoding"
|
2014-08-21 20:06:11 +00:00
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// KeyValueStore persists key/value pairs. Implementations must be fundamentally
|
|
|
|
// goroutine-safe. However, it is the caller's responsibility that keys and
|
|
|
|
// values can be safely marshaled and unmarshaled (via the MarshalBinary and
|
|
|
|
// UnmarshalBinary methods of the keys and values). For example, if you call the
|
|
|
|
// Put method of a KeyValueStore implementation, but the key or the value are
|
|
|
|
// modified concurrently while being marshaled into its binary representation,
|
|
|
|
// you obviously have a problem. Methods of KeyValueStore only return after
|
|
|
|
// (un)marshaling is complete.
|
2014-08-21 20:06:11 +00:00
|
|
|
type KeyValueStore interface {
|
2014-09-09 12:36:26 +00:00
|
|
|
Put(key, value encoding.BinaryMarshaler) error
|
2014-09-16 13:47:24 +00:00
|
|
|
// Get unmarshals the result into value. It returns false if no entry
|
|
|
|
// could be found for key. If value is nil, Get behaves like Has.
|
|
|
|
Get(key encoding.BinaryMarshaler, value encoding.BinaryUnmarshaler) (bool, error)
|
|
|
|
Has(key encoding.BinaryMarshaler) (bool, error)
|
|
|
|
// Delete returns an error if key does not exist.
|
|
|
|
Delete(key encoding.BinaryMarshaler) error
|
2014-08-21 20:06:11 +00:00
|
|
|
|
|
|
|
NewBatch() Batch
|
|
|
|
Commit(b Batch) error
|
2014-09-18 15:14:14 +00:00
|
|
|
ForEach(func(kv KeyValueAccessor) error) error
|
2014-08-21 20:06:11 +00:00
|
|
|
|
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// Batch allows KeyValueStore mutations to be pooled and committed together. An
|
|
|
|
// implementation does not have to be goroutine-safe. Never modify a Batch
|
|
|
|
// concurrently or commit the same batch multiple times concurrently. Marshaling
|
|
|
|
// of keys and values is guaranteed to be complete when the Put or Delete methods
|
|
|
|
// have returned.
|
2014-08-21 20:06:11 +00:00
|
|
|
type Batch interface {
|
2014-09-09 12:36:26 +00:00
|
|
|
Put(key, value encoding.BinaryMarshaler) error
|
|
|
|
Delete(key encoding.BinaryMarshaler) error
|
2014-08-21 20:06:11 +00:00
|
|
|
Reset()
|
|
|
|
}
|