mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
fix uuid store size
This commit is contained in:
parent
539a57026d
commit
bcaee4d179
2 changed files with 3 additions and 9 deletions
|
@ -70,9 +70,8 @@ where U: UuidStore,
|
|||
Ok(indexes)
|
||||
}
|
||||
|
||||
pub async fn get_size(&self) -> Result<u64> {
|
||||
todo!()
|
||||
//Ok(self.index_store.get_size()? + self.index_uuid_store.get_size().await?)
|
||||
pub async fn get_uuids_size(&self) -> Result<u64> {
|
||||
Ok(self.index_uuid_store.get_size().await?)
|
||||
}
|
||||
|
||||
pub async fn snapshot(&self, path: impl AsRef<Path>) -> Result<Vec<Index>> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue