Roundup Tracker - Issues

Message7440

Author rouilj
Recipients rouilj
Date 2022-01-17.00:54:51
Message-id <1642380891.63.0.732840612702.issue2551188@roundup.psfhosted.org>
In-reply-to
One of the indexers we support is whoosh. It has a few features that we aren't using.

One of which is a search language that supports:

  * AND and OR operations (along with ANDNOT, ANDMAYBE, and NOT )
  * "phrase searching"
  * NEAR operations
  * explicit fuzzy~ search (maybe replace current automatic fuzzy 1 change search)
  * (grouping and wildcards*) and more ...

https://whoosh.readthedocs.io/en/latest/parsing.html
https://whoosh.readthedocs.io/en/latest/querylang.html

We need:

  1) code to support extended queries rather than the simple word1 word2 with implied
     AND we currently use. Consider supporting a subset of the full query language
     and query parser. Something maybe googlish? Full support may be too confusing
     by default.

  2) admin options to enable extended queries - might be simple on/off/fuzzy or
     have a more extensive list that turns on sets of options.

  3) can the roundup admin override our simple option choices by using interfaces.py
     to permit more extensive customization?

  4) documentation for the changes - for admin and user
History
Date User Action Args
2022-01-17 00:54:51rouiljsetrecipients: + rouilj
2022-01-17 00:54:51rouiljsetmessageid: <1642380891.63.0.732840612702.issue2551188@roundup.psfhosted.org>
2022-01-17 00:54:51rouiljlinkissue2551188 messages
2022-01-17 00:54:51rouiljcreate