feat: in-memory index

This commit is contained in:
Jindřich Moravec 2024-02-04 15:20:26 +01:00
parent 3bf04ae2d6
commit a4a29e632b
3 changed files with 108 additions and 55 deletions

View file

@ -53,15 +53,6 @@ pub async fn less_than_eq<T>(store: &mut Store<T>, file_position0: FilePosition,
todo!()
}
#[async_trait]
impl <T>SomethingSupportingLeq for Store<T>
where T: Send
{
async fn less_than_eq(&mut self, file_position0: FilePosition, file_position1: FilePosition) -> std::result::Result<bool, Error> {
Ok(true)
}
}
pub const ROWS_FILE_NAME: &'static str = "rows";
impl <T>Store<T> {