Multi-query Index V1
The current implementation takes only one query -> Be able to set multiple queries to an Index result.
The current version iterate over the query matches, this V1 version could simply iterate over all query result matches.
A V2 version should ensure a match is not count multiple times and merge all the query result into one.
UI
The UI is similar to the actual progression UI :
- a label indicating the number of queries
- one main query field to add query
- in the parameters area the full query list with controls to edit the queries&names, remove a query, add multiple queries
Add a check button to activate/deactivate the multi query mode
Recette
- Create an Index on VOEUX
- Set the "j.+" query
- Compute (with "multiple=false")
- The results contains lines like "jamais, ..., "je", etc.
- Add the "t.+" query
- Compute again
- Set "multiple=true"
- Set the "j.+" query -> the "j.+" query is added to the list in the parameters section
- Compute again
- The results contains lines like "jamais, ..., "je", etc. AND "tous", ..., "travail", etc.
Edited by Matthieu Decorde