-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] make Search more greedy #212
Conversation
Kudos, SonarCloud Quality Gate passed! |
💥 Acceptance tests pipeline webUISE-master-firefox-mysql8.0-php7.2-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1689/19/1 |
d2a2322
to
f4c2866
Compare
💥 Acceptance tests pipeline apiLimitSearches-latest-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1702/20/1 |
5fd8267
to
9039d23
Compare
💥 Acceptance tests pipeline apiSearchElastic-latest-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1705/22/1 |
Kudos, SonarCloud Quality Gate passed! |
💥 Acceptance tests pipeline apiSearchElastic-master-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1706/21/1 |
@mmattel Doc attention: This changes end user behaviour. |
Great change ! |
@micbar it would be great this PR can be finalized so we can use the operators in docs. |
💥 Acceptance tests pipeline webUISE-master-firefox-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1772/16/1 |
💥 Acceptance tests pipeline webUISE-latest-firefox-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1772/18/1 |
💥 Acceptance tests pipeline webUISE-latest-chrome-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1773/17/1 |
💥 Acceptance tests pipeline webUISE-master-chrome-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1797/15/1 |
💥 Acceptance tests pipeline apiLimitSearches-master-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1798/19/1 |
e01933c
to
70cfdc0
Compare
💥 Acceptance tests pipeline webUISE-latest-chrome-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1821/17/1 |
Signed-off-by: Michael Barz <[email protected]>
a780137
to
aa986b2
Compare
💥 Acceptance tests pipeline webUISE-latest-chrome-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1832/17/1 |
💥 Acceptance tests pipeline webUISE-master-chrome-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1832/15/1 |
💥 Acceptance tests pipeline webUISE-latest-firefox-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1832/18/1 |
💥 Acceptance tests pipeline webUISE-master-firefox-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1832/16/1 |
💥 Acceptance tests pipeline apiSearchElastic-latest-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1833/22/1 |
My findings:
|
💥 Acceptance tests pipeline apiSearchElastic-latest-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1835/22/1 |
💥 Acceptance tests pipeline apiSearchElastic-master-mysql8.0-php7.4-es7.10 failed. The build has been cancelled. https://drone.owncloud.com/owncloud/search_elastic/1835/21/1 |
6a65874
to
92c2c5f
Compare
Kudos, SonarCloud Quality Gate passed! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Modify the query
Outline
We change the internal query language to craft together a query which uses every term as string with trailing wildcards search_string
A list of strings
lorem ipsu
will be sent so the server as =>lorem* ipsu*
.Users are also able to set wildcards on their own, e.g.
*lorem* *ipsu*
.will fix two long standing issues @pmaier1 @EParzefall @mmattel