redmine_full_text_search
redmine_full_text_search copied to clipboard
Full text search for Redmine
Redmine itself will no longer be affected by `full_text_search` update process. * No need to wait for `full_text_search` update process * No Redmine update error if `full_text_search` fails * For...
We specify `QUERY_NO_SYNTAX_ERROR` but syntax error may be happen. https://github.com/clear-code/redmine_full_text_search/blob/eaddeb17225f6dc19f839a37720ff8285cc13e76/lib/full_text_search/searcher.rb#L13 Because `mroonga_query_expand()`/`pgroonga_query_expand()` don't use the flag. https://github.com/clear-code/redmine_full_text_search/blob/eaddeb17225f6dc19f839a37720ff8285cc13e76/lib/full_text_search/mroonga.rb#L27 https://github.com/clear-code/redmine_full_text_search/blob/eaddeb17225f6dc19f839a37720ff8285cc13e76/lib/full_text_search/pgroonga.rb#L19 We should specify `QUERY_NO_SYNTAX_ERROR` flag for `mroonga_query_expand()`/`pgroonga_query_expand()` too.
Groonga provides fuzzy search feature (as an experimental feature) since 13.0.8. We can add an option to enable fuzzy search for Japanese. We need to do the followings to enable...
Knowledgebase articles are not currently searched. It is a function by a plug-in, and although it is not standard, it seems that there are many plug-in users. Do you have...
I ran the sync after setting the Chupa Text Server URL, but I had the same issue as Issue #92. I couldn't search in doc, xls, pdf, eml files. The...
Search results have same item when some fields match keyword of searching. But I think to show only one item on search results. **How to reproduce** 1. Add custom fields...
v0.5.0 の時点ではサポートしていない。
Since the next release will drop support for Redmine 4.
Match the arguments of `[](key)`. It can be used as follows: ``` irb(main):001:0> FullTextSearch::Type.available?('wiki_page') => true irb(main):002:0> FullTextSearch::Type.available?('WikiPage') => true ```
GitHub: GH-163 ## Problem The existing "Any searchable text" issue filter cannot perform AND searches across multiple fields. ## Cause The existing implementation of `IssueQuery#sql_for_any_searchable_field` did not handle AND searches...