mirror of
https://github.com/safing/portbase
synced 2025-09-14 00:59:53 +00:00
Add PutMany, currently only for bbolt and hashmap storage backends
This commit is contained in:
parent
35ab2be6a0
commit
e0f96d5188
10 changed files with 246 additions and 12 deletions
|
@ -10,6 +10,7 @@ import (
|
|||
type Interface interface {
|
||||
Get(key string) (record.Record, error)
|
||||
Put(m record.Record) error
|
||||
PutMany() (batch chan record.Record, err chan error)
|
||||
Delete(key string) error
|
||||
Query(q *query.Query, local, internal bool) (*iterator.Iterator, error)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue