Skip to content

Commit cfced51

Browse files
committed
Indexing and storage: Implement suggestions by CodeRabbit
1 parent 274f983 commit cfced51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ and y in [9,11], the engine does the following:
224224

225225
## Doc values
226226

227-
:::{rubric} Data storage prior to Lucene 4.0
227+
:::{rubric} Data storage before Lucene 4.0
228228
:::
229229

230230
Until Lucene 4.0, columns were indexed using an inverted index data structure
@@ -251,7 +251,7 @@ store numerics (single- or multivalued), sorted keywords (single or
251251
multivalued) and binary data blobs per document.
252252
These values are quite fast to access at search time, since they are
253253
stored column-stride such that only the value for that one field needs
254-
to be decoded per hit. This is in contrast to Lucene's stored document
254+
to be decoded per hit. Compared to Lucene's stored document
255255
fields, which store all field values for one document together in a
256256
row-stride fashion, and are therefore relatively slow to access.
257257
>

0 commit comments

Comments
 (0)