2020-11-16 13:10:43 +00:00
|
|
|
package kv
|
2020-09-07 13:07:36 +00:00
|
|
|
|
2020-11-12 04:04:12 +00:00
|
|
|
type Base interface {
|
2020-09-07 13:07:36 +00:00
|
|
|
Load(key string) (string, error)
|
2020-11-03 07:08:50 +00:00
|
|
|
MultiLoad(keys []string) ([]string, error)
|
2020-11-06 08:47:18 +00:00
|
|
|
LoadWithPrefix(key string) ([]string, []string, error)
|
2020-09-07 13:07:36 +00:00
|
|
|
Save(key, value string) error
|
2020-11-03 07:08:50 +00:00
|
|
|
MultiSave(kvs map[string]string) error
|
2020-09-07 13:07:36 +00:00
|
|
|
Remove(key string) error
|
2020-11-03 07:08:50 +00:00
|
|
|
MultiRemove(keys []string) error
|
2021-04-09 01:55:04 +00:00
|
|
|
RemoveWithPrefix(key string) error
|
2020-12-07 07:22:20 +00:00
|
|
|
|
2020-12-07 06:37:42 +00:00
|
|
|
Close()
|
2020-12-05 09:39:58 +00:00
|
|
|
}
|
2020-12-07 07:22:20 +00:00
|
|
|
|
|
|
|
type TxnBase interface {
|
|
|
|
Base
|
|
|
|
MultiSaveAndRemove(saves map[string]string, removals []string) error
|
2021-03-06 08:00:41 +00:00
|
|
|
MultiRemoveWithPrefix(keys []string) error
|
|
|
|
MultiSaveAndRemoveWithPrefix(saves map[string]string, removals []string) error
|
2020-12-07 07:22:20 +00:00
|
|
|
}
|