(&self, vec: Vec<f32>)
| 122 | /// insert to storage and persist to disk |
| 123 | #[inline] |
| 124 | pub async fn insert_with_uuid(&self, vec: Vec<f32>) -> Result<(), SessionResult> { |
| 125 | let vid = Uuid::new_v4().to_string(); |
| 126 | return self.insert(vid, vec).await |
| 127 | } |
| 128 | |
| 129 | |
| 130 | /// remove from storage and persist to disk |
no test coverage detected