mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-26 04:31:02 -05:00
* extend comments for strorage crate * update comments and readme for collection crate * apply cargo fmt * fix tests * apply fmt
21 lines
456 B
Plaintext
21 lines
456 B
Plaintext
sequenceDiagram
|
|
User->>Collection: Request
|
|
activate Collection
|
|
loop
|
|
Collection->>Collection: Write request to WAL
|
|
end
|
|
Collection->>Updater: Update Request
|
|
deactivate Collection
|
|
activate Updater
|
|
Updater-->>Optimizer: Notify changed
|
|
Updater-->>Collection: Notify done
|
|
deactivate Updater
|
|
activate Collection
|
|
Collection->>User: Response
|
|
deactivate Collection
|
|
activate Optimizer
|
|
opt
|
|
Optimizer->>Optimizer: optimize
|
|
end
|
|
deactivate Optimizer
|