add memory kv store
This commit is contained in:
6
weed/util/bptree/tree_store/tree_store.go.go
Normal file
6
weed/util/bptree/tree_store/tree_store.go.go
Normal file
@@ -0,0 +1,6 @@
|
||||
package tree_store
|
||||
|
||||
type TreeStore interface {
|
||||
Put(k int64, v []byte) error
|
||||
Get(k int64) ([]byte, error)
|
||||
}
|
||||
Reference in New Issue
Block a user