You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration/index-config.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -164,7 +164,7 @@ Indexing with position is required to run phrase queries.
164
164
165
165
Quickwit handles three numeric types: `i64`, `u64`, and `f64`.
166
166
167
-
Numeric values can be stored in a fast field (the equivalent of Lucene's `DocValues`) which is a column-oriented storage.
167
+
Numeric values can be stored in a fast field (the equivalent of Lucene's `DocValues`), which is a column-oriented storage used for range queries and aggregations.
168
168
169
169
Example of a mapping for an u64 field:
170
170
@@ -179,12 +179,14 @@ fast: true
179
179
180
180
**Parameters for i64, u64 and f64 field**
181
181
182
-
| Variable | Description | Default value |
183
-
| ------------- | ------------- | ------------- |
184
-
| `description` | Optional description for the field. | `None` |
185
-
| `stored` | Whether the field values are stored in the document store | `true` |
186
-
| `indexed` | Whether the field values are indexed | `true` |
187
-
| `fast` | Whether the field values are stored in a fast field | `false` |
0 commit comments