2024-12-29 13:01:16 +01:00
|
|
|
## Features
|
|
|
|
|
|
2024-12-20 11:51:57 +01:00
|
|
|
- repl
|
|
|
|
|
- mime-type => exec app + value
|
2024-12-23 16:19:27 +01:00
|
|
|
- add waitgroup to db.go funcs
|
2024-12-23 19:31:50 +01:00
|
|
|
- RestList does not support any params?
|
2024-12-29 13:01:16 +01:00
|
|
|
|
|
|
|
|
## DB Structure
|
|
|
|
|
|
|
|
|
|
- put tags into sub bucket see #1
|
|
|
|
|
|
|
|
|
|
tags bucket
|
|
|
|
|
key/tag => tag/key
|
|
|
|
|
tag/key => tag
|
|
|
|
|
|
|
|
|
|
A delete would just delete all keys from all values and then:
|
|
|
|
|
lookup in tags bucket for all key/*, then iterate over the values and
|
|
|
|
|
remove all tag/key's. Then deleting a key would not leave any residue
|
|
|
|
|
behind.
|