@@ -6,7 +6,7 @@ homepage = { workspace = true }
|
||||
keywords = { workspace = true }
|
||||
license = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
description = "A tutorial for building an LSM tree storage engine in a week."
|
||||
description = "A course for building an LSM tree storage engine in a week."
|
||||
|
||||
|
||||
[dependencies]
|
||||
|
@@ -24,7 +24,7 @@ use crate::iterators::StorageIterator;
|
||||
use crate::mem_table::MemTableIterator;
|
||||
use crate::table::SsTableIterator;
|
||||
|
||||
/// Represents the internal type for an LSM iterator. This type will be changed across the tutorial for multiple times.
|
||||
/// Represents the internal type for an LSM iterator. This type will be changed across the course for multiple times.
|
||||
type LsmIteratorInner = TwoMergeIterator<
|
||||
TwoMergeIterator<MergeIterator<MemTableIterator>, MergeIterator<SsTableIterator>>,
|
||||
MergeIterator<SstConcatIterator>,
|
||||
|
Reference in New Issue
Block a user