quickwit-oss / tantivy

Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust
MIT License
11.41k stars 627 forks source link

lift clauses in LogicalAst #2449

Open PSeitz opened 2 weeks ago

PSeitz commented 2 weeks ago

(a OR b) OR (c OR d) can be simplified to (a OR b OR c OR d) (a AND b) AND (c AND d) can be simplified to (a AND b AND c AND d)

This directly affects how queries are executed and the performance

Remove SumWithCoordsCombiner, it is effectively the same as SumCombiner, but with an unused field

simplify_ast