PSeitz

Results 117 issues of PSeitz

Fiels may be encoded in the columnar storage or in the inverted index for JSON fields. Add a new Segment file that contains the list of fields (schema + encoded)

JSON fields that get shadowed by a field with a dot can't be addressed (except with the hacky `{u1}`), as the field with the longer name gets picked. Happens independently...

### expand_dots Function When `expand_dots_enabled` is true, keys with a `.` are treated as JSON path separators, not as literal periods. For instance, `expand_dots_enabled` converts `{"root": {"child.with.dot": "hello"}}` into a...

New [bitpacking](https://github.com/quickwit-oss/bitpacking) release so we can remove the git dependency https://github.com/quickwit-oss/tantivy/blob/main/Cargo.toml#L40

# Problem Outline 1. tantivy root fields can't be indexed without explicit configuration, e.g. there's no index everything mode. Workaround is to copy into a seperate JSON field. 2. Nested...

With doc as trait it's possible to pass an array of values via `RefValue::Array`, but this is ignored in indexing regular values and only used in fastfields or nested JSON...