| 15 | |
| 16 | |
| 17 | pub struct VecStorage { |
| 18 | // DashMap |
| 19 | vcache: DashMap<VectorId, Vector>, |
| 20 | |
| 21 | // Wal session |
| 22 | wal_session: Session, |
| 23 | |
| 24 | // Reporter session |
| 25 | reporter_session: router::Session<Event<VectorId, Vector>>, |
| 26 | |
| 27 | off_reporter: bool, |
| 28 | |
| 29 | off_disk: bool |
| 30 | } |
| 31 | |
| 32 | impl VecStorage |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected