Skip to content

Commit a13dfb2

Browse files
matrivamotl
authored andcommitted
Indexing and storage: Implement suggestions from code review
1 parent b495cb2 commit a13dfb2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/feature/storage/indexing-and-storage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ documents. We will look at the three main Lucene structures that are used
2929
within CrateDB: Inverted indexes for text values, BKD trees for numeric
3030
values, and doc values.
3131

32-
:Inverted index: You will learn how inverted indexes are implemented in Lucene
33-
and CrateDB, and how they are used for indexing text values.
32+
:Inverted index: Understand how inverted indexes are implemented in Lucene
33+
and how CrateDB uses them to index text values and enable fast text searches.
3434

35-
:BKD tree: Better understand the BKD tree, starting from KD trees, and how this
35+
:BKD tree: Understand the BKD tree, starting from KD trees, and how this
3636
data structure supports range queries on numeric values in CrateDB.
3737

3838
:Doc values: This data structure supports more efficient querying document
39-
fields by id, performs column-oriented retrieval of data, and improves the
39+
fields by name, performs column-oriented retrieval of data, and improves the
4040
performance of aggregation and sorting operations.
4141

4242
## Indexing text values

0 commit comments

Comments
 (0)