Erlend Simonsen

Results 13 comments of Erlend Simonsen

Both I and the original reporter were bitten by term-queries not matching values with characters like `-` and `_`, so the documents weren't actually deleted. If you change `1,2,3` to...

Just a quick follow up that changing the tokenizer to `raw` gives the expected behavior ``` schema_builder.add_text_field("doc", stored=True, tokenizer_name="raw") ``` and everything is deleted: ``` SearchResult(hits: [], count: 0) SearchResult(hits:...

I don't think applying the tokenizer to the value would give the expected behavior in this case, as trying to delete `version-1.1.0` would also delete `version-1.10` and `version-11.0` for example....