2020-03-20 10:08:00 +00:00
|
|
|
|
## Target:
|
|
|
|
|
|
2020-08-05 15:33:45 +00:00
|
|
|
|
To build 1 key-value abstraction on top of Bolt, LMDB and RemoteDB (our own read-only TCP protocol for key-value databases).
|
2020-03-20 10:08:00 +00:00
|
|
|
|
|
2020-03-11 11:02:37 +00:00
|
|
|
|
## Design principles:
|
2020-04-10 10:55:31 +00:00
|
|
|
|
- No internal copies/allocations - all must be delegated to user. It means app must copy keys/values before put to database.
|
2020-03-11 11:02:37 +00:00
|
|
|
|
Make it part of contract - written clearly in docs, because it's unsafe (unsafe to put slice to DB and then change it).
|
|
|
|
|
Known problems: mutation.Put does copy internally.
|
2020-08-05 15:33:45 +00:00
|
|
|
|
- Low-level API: as close to original LMDB as possible.
|
2020-03-11 11:02:37 +00:00
|
|
|
|
- Expose concept of transaction - app-level code can .Rollback() or .Commit() at once.
|
|
|
|
|
|
2020-03-24 02:12:55 +00:00
|
|
|
|
## Result interface:
|
|
|
|
|
|
|
|
|
|
```
|
2020-04-04 07:18:10 +00:00
|
|
|
|
type KV interface {
|
2020-03-24 02:12:55 +00:00
|
|
|
|
View(ctx context.Context, f func(tx Tx) error) (err error)
|
|
|
|
|
Update(ctx context.Context, f func(tx Tx) error) (err error)
|
|
|
|
|
Close() error
|
2020-04-04 07:18:10 +00:00
|
|
|
|
|
|
|
|
|
Begin(ctx context.Context, writable bool) (Tx, error)
|
2020-03-24 02:12:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Tx interface {
|
|
|
|
|
Bucket(name []byte) Bucket
|
2020-04-04 07:18:10 +00:00
|
|
|
|
|
|
|
|
|
Commit(ctx context.Context) error
|
2020-06-30 03:48:46 +00:00
|
|
|
|
Rollback() // doesn't return err to be defer friendly
|
2020-03-24 02:12:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Bucket interface {
|
|
|
|
|
Get(key []byte) (val []byte, err error)
|
|
|
|
|
Put(key []byte, value []byte) error
|
|
|
|
|
Delete(key []byte) error
|
|
|
|
|
Cursor() Cursor
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Cursor interface {
|
|
|
|
|
Prefix(v []byte) Cursor
|
|
|
|
|
MatchBits(uint) Cursor
|
|
|
|
|
Prefetch(v uint) Cursor
|
|
|
|
|
NoValues() NoValuesCursor
|
|
|
|
|
|
|
|
|
|
First() ([]byte, []byte, error)
|
|
|
|
|
Seek(seek []byte) ([]byte, []byte, error)
|
|
|
|
|
Next() ([]byte, []byte, error)
|
|
|
|
|
Walk(walker func(k, v []byte) (bool, error)) error
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NoValuesCursor interface {
|
2020-04-04 07:18:10 +00:00
|
|
|
|
First() ([]byte, uint32, error)
|
|
|
|
|
Seek(seek []byte) ([]byte, uint32, error)
|
|
|
|
|
Next() ([]byte, uint32, error)
|
|
|
|
|
Walk(walker func(k []byte, vSize uint32) (bool, error)) error
|
2020-03-24 02:12:55 +00:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Rationale and Features list:
|
2020-03-11 11:02:37 +00:00
|
|
|
|
|
|
|
|
|
#### Buckets concept:
|
|
|
|
|
- Bucket is an interface, can’t be nil, can't return error
|
|
|
|
|
|
|
|
|
|
#### InMemory and ReadOnly modes:
|
2020-08-05 15:33:45 +00:00
|
|
|
|
- `NewLMDB().InMem().ReadOnly().Open(ctx)`
|
2020-03-11 11:02:37 +00:00
|
|
|
|
|
|
|
|
|
#### Context:
|
|
|
|
|
- For transactions - yes
|
|
|
|
|
- For .First() and .Next() methods - no
|
|
|
|
|
|
|
|
|
|
#### Cursor/Iterator:
|
|
|
|
|
- Cursor is an interface, can’t be nil, can't return error
|
2020-08-05 15:33:45 +00:00
|
|
|
|
- `cursor.Prefix(prefix)` filtering keys by given prefix. RemoteDb - to support server side filtering.
|
|
|
|
|
- `cursor.Prefetch(1000)` - useful for Remote
|
2020-05-30 08:12:21 +00:00
|
|
|
|
- Methods .First, .Next, .Seek - can return error. If err!=nil then key SHOULD be !=nil (can be []byte{} for example). Then looping code will look as:
|
|
|
|
|
```go
|
|
|
|
|
for k, v, err := c.First(); k != nil; k, v, err = c.Next() {
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
// logic
|
|
|
|
|
}
|
|
|
|
|
```
|
2020-03-11 11:02:37 +00:00
|
|
|
|
|
|
|
|
|
#### Concept of Item:
|
|
|
|
|
- No Lazy values, but can disable fetching values by: `.Cursor().PrefetchValues(false).FirstKey()`
|
|
|
|
|
|
|
|
|
|
#### Managed/un-managed transactions
|
|
|
|
|
- Tx is an interface
|
|
|
|
|
- db.Update, db.View - yes
|
|
|
|
|
- db.Batch - no
|
2020-08-05 15:33:45 +00:00
|
|
|
|
- all keys and values returned by all method are valid until end of transaction
|
|
|
|
|
- transaction object can be used only withing 1 goroutine
|
2020-03-11 11:02:37 +00:00
|
|
|
|
|
|
|
|
|
#### Errors:
|
|
|
|
|
- Lib-Errors must be properly wrapped to project: for example ethdb.ErrKeyNotFound
|
|
|
|
|
|
|
|
|
|
#### i.SeekTo vs i.Rewind: TBD
|
|
|
|
|
#### in-memory LRU cache: TBD
|
2020-04-10 10:55:31 +00:00
|
|
|
|
- Reverse Iterator
|
2020-03-11 11:02:37 +00:00
|
|
|
|
|
|
|
|
|
## Not covered by Abstractions:
|
|
|
|
|
- DB stats, bucket.Stats(), item.EstimatedSize()
|
|
|
|
|
- buckets stats, buckets list
|
|
|
|
|
- TTL of keys
|
|
|
|
|
- Monotonic int DB.GetSequence
|
|
|
|
|
- Nested Buckets
|
|
|
|
|
- Backups, tx.WriteTo
|