mchaput / whoosh

Pure-Python full-text search library
Other
569 stars 69 forks source link

Support of grouping for GtLtPlugin #13

Open espdev opened 3 years ago

espdev commented 3 years ago

Hello,

Currently, we cannot use () groups with GtLtPlugin. The following examples raise NotImplementedError: GtLtNode exception:

(year:>2001 AND year:<=2003)
year:(>2001 <=2003)

It would be useful in the following query with two ranges, for example:

(year:>2001 year:<=2003) (year:>2005 year:<=2010)