c8d03046bf
add a check on the fid in the geosearch
2021-10-22 18:08:18 +02:00
3942b3732f
re-implement the geosearch
2021-10-22 18:03:39 +02:00
7cd9109e2f
lowercase value extracted from Token
2021-10-22 17:50:15 +02:00
4e113bbf1b
handle the case of empty input
2021-10-22 17:49:08 +02:00
e25ca9776f
start updating the exposed function to makes other modules happy
2021-10-22 17:23:22 +02:00
6c9165b6a8
provide a helper to parse the token but to not handle the errors
2021-10-22 16:52:13 +02:00
efb2f8b325
convert the errors
2021-10-22 16:38:35 +02:00
d6ba84ea99
re introduce the special error type to be able to add context to the errors
2021-10-22 15:09:56 +02:00
c27870e765
integrate a first version without any error handling
2021-10-22 14:33:18 +02:00
01dedde1c9
update some names and move some parser out of the lib.rs
2021-10-22 01:59:38 +02:00
7e5c5c4d27
start a new rewrite of the filter parser
2021-10-22 01:15:42 +02:00
d519e1036f
Update .github/workflows/publish-crossbuild.yml
...
better naming
Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com >
2021-10-21 17:02:28 +00:00
19eebc0b0a
Update .github/workflows/publish-crossbuild.yml
...
better naming
Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com >
2021-10-21 17:02:16 +00:00
5585020753
Update .github/workflows/publish-crossbuild.yml
...
better spacing
Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com >
2021-10-21 17:02:00 +00:00
c634d43ac5
add a simple test on the filters with an integer
2021-10-21 17:10:27 +02:00
6c15f50899
rewrite the parser logic
2021-10-21 16:45:42 +02:00
e1d81342cf
add test on the or and and operator
2021-10-21 13:01:25 +02:00
423baac08b
fix the tests
2021-10-21 12:45:40 +02:00
36281a653f
write all the simple tests
2021-10-21 12:40:11 +02:00
f8fe9316c0
Update version for the next release (v0.18.1)
2021-10-21 11:56:14 +02:00
661bc21af5
Fix the filter parser
...
And add a bunch of tests on the filter::from_array
2021-10-21 11:45:03 +02:00
ef7e7a8f11
Only generate aarch64 binary with action-rs
2021-10-21 00:40:46 +08:00
eb91f27b65
Add MEILI_SERVER_PROVIDER to dockerfile
2021-10-20 17:53:43 +02:00
24eef577c5
Merge #1822
...
1822: Tiny improvements in download-latest.sh r=irevoire a=curquiza
- Add check on `$latest` to check if it's empty. We have some issue on the swift SDK currently where the version number seems not to be retrieved, but we don't why https://github.com/meilisearch/meilisearch-swift/pull/216
- Replace some `"` by `'`
- Rename `$BINARY_NAME` by `$binary_name` to make them consistent with the other variables that are filled all along the script
Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com >
2021-10-19 09:32:27 +00:00
e7e4ccf74f
Merge pull request #1817 from nfsec/patch-1
...
Improve RUNs in Dockerfile
2021-10-19 00:00:22 +02:00
017ecf76e3
Replace double quotes by single ones
2021-10-18 23:39:07 +02:00
b6af84eb77
Merge #394
...
394: Added search_geo benchmark in cron job r=irevoire a=fumblehool
fixes : #392
`search_geo` cron will run every friday at 18:30
Co-authored-by: Damanpreet Singh <daman.4880@gmail.com >
2021-10-18 14:33:32 +00:00
7906461c14
Merge #396
...
396: Fix indexing benchmark GH actions upload filename r=irevoire a=fumblehool
fixes : #393
Co-authored-by: Damanpreet Singh <daman.4880@gmail.com >
2021-10-18 13:34:10 +00:00
2e4604b0b9
fixed filename for search_* crons
2021-10-18 18:48:38 +05:30
4c34164d2e
fixed filename for search_geo cron
2021-10-18 18:43:36 +05:30
1c9ceadd8d
Merge #1824
...
1824: Fix indexation perfomances on mounted disk r=ManyTheFish a=ManyTheFish
We were creating all of our tempfiles in data.ms directory, but when the database directory is stored in a mounted disk, tempfiles I/O throughput decreases, impacting the indexation time.
Now, only the persisting tempfiles will be created in the database directory. Other tempfiles will stay in the default tmpdir.
Co-authored-by: many <maxime@meilisearch.com >
2021-10-18 12:42:47 +00:00
36ab7b3ebd
Fix small typo
2021-10-18 14:17:32 +02:00
b4038597ba
Keep persisting tmp files in database directory and put non-persisting tmp files in default tmp dir
2021-10-18 14:16:35 +02:00
9df4f3aaad
Merge #397
...
397: Fix typo in repo r=curquiza a=saintmalik
Fix the single typo found in this repo
Co-authored-by: SaintMalik <37118134+saintmalik@users.noreply.github.com >
2021-10-18 11:59:48 +00:00
513d3178c6
Merge #398
...
398: Update version for the next release (v0.18.2) r=irevoire a=curquiza
Breaking because of https://github.com/meilisearch/milli/pull/358
Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com >
2021-10-18 11:47:26 +00:00
2209acbfe2
Update version for the next release (v0.18.2)
2021-10-18 13:45:48 +02:00
79817bd465
Merge #1813
...
1813: Apply highlight tags on numbers in the formatted search result output r=irevoire a=Jhnbrn90
This is my first ever Rust related PR.
As described in #1758 , I've attempted to highlighting numbers correctly under the `_formatted` key.
Additionally, I added a test which should assert appropriate highlighting.
I'm open to suggestions and improvements.
Co-authored-by: John Braun <john@brn.email >
2021-10-18 09:05:01 +00:00
70121e3c6b
fix typo in repo
2021-10-18 04:00:19 +01:00
59cc59e93e
Merge #358
...
358: Replacing pest with nom r=Kerollmops a=CNLHC
Co-authored-by: 刘瀚骋 <cn_lhc@qq.com >
2021-10-16 20:44:38 +00:00
493d9b98f5
fix indexing benchmark GH actions upload filename
2021-10-16 21:52:36 +05:30
efaef4f748
Added search_geo benchmark in cron job
2021-10-16 21:41:45 +05:30
93ad8f04b5
Add check if $latest is empty
2021-10-16 17:36:36 +02:00
e4cb7ed30f
Tiny improvement in download-latest.sh
2021-10-16 17:23:50 +02:00
b9e060423f
Merge #1760
...
1760: Add option to use environment variable to increase rate limit r=curquiza a=nav1s
This closes #1655 .
Added GITHUB_PAT environment variable and a comment to explain how to create it (I found the ```public_repo``` scope to be the best fit out of the available [scopes](https://docs.github.com/en/developers/apps/building-oauth-apps/scopes-for-oauth-apps#available-scopes )).
Co-authored-by: Aviv <avivnt@gmail.com >
Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com >
2021-10-16 12:56:02 +00:00
ead1ec3396
Update download-latest.sh
2021-10-16 14:55:10 +02:00
306a8cd059
Update download-latest.sh
2021-10-16 14:55:06 +02:00
4c50deb4b7
2 RUNs less.
2021-10-16 11:37:01 +02:00
be75426e64
Apply formatting according code style guidelines
2021-10-15 21:32:29 +02:00
23458de588
One RUN less
...
Align apk add commands between images.
2021-10-15 21:18:31 +02:00
7666e4f34a
follow the suggestions
2021-10-14 21:37:59 +08:00