| 14 | |
| 15 | #[allow(dead_code)] |
| 16 | pub struct CollectionCacheEntry { |
| 17 | pub name: String, |
| 18 | pub dense_index: Option<Arc<HNSWIndex>>, |
| 19 | pub inverted_index: Option<Arc<InvertedIndex>>, |
| 20 | pub last_accessed: Instant, |
| 21 | } |
| 22 | |
| 23 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
| 24 | pub struct CollectionNameKey(u64); |
nothing calls this directly
no outgoing calls
no test coverage detected