Add chunk reader impl

This commit is contained in:
liyaxing
2023-09-11 17:30:06 +08:00
parent f3cc3f6043
commit 58c0d74ca1
5 changed files with 95 additions and 5 deletions
+3 -1
View File
@@ -22,5 +22,7 @@ class ChunkStore:
def delete_chunk(self, chunk_id: ChunkID):
self.blob.delete(chunk_id)
def get_chunk_file_path(self, chunk_id: ChunkID) -> str:
return self.blob.get_full_path(chunk_id, False)