013fe4cbc9
Merge #2297
...
2297: Feat(Search): Enhance formating search results r=ManyTheFish a=ManyTheFish
Add new settings and change crop_len behavior to count words instead of characters.
- [x] `highlightPreTag`
- [x] `highlightPostTag`
- [x] `cropMarker`
- [x] `cropLength` count word instead of chars
- [x] `cropLength` 0 is now considered as no `cropLength`
- [ ] ~smart crop finding the best matches interval~ (postponed)
Partially fixes #2214 . (no smart crop)
Co-authored-by: ManyTheFish <many@meilisearch.com >
2022-04-07 13:29:56 +00:00
dc2cc1ee89
Feat(Search): Enhance formating search results
2022-04-07 15:04:08 +02:00
bb5f0e1485
Merge #2271
...
2271: Simplify Dockerfile r=ManyTheFish a=Thearas
# Pull Request
## What does this PR do?
1. Fixes #2234
2. Replace `$TARGETPLATFORM` with `apk --print-arch` to make Dockerfile available for `docker build` as well, not just `docker buildx` (inspired by [rust-lang/docker-rust](https://github.com/rust-lang/docker-rust/blob/master/1.59.0/alpine3.14/Dockerfile#L13 ))
PTAL `@curquiza`
## PR checklist
Please check if your PR fulfills the following requirements:
- [x] Does this PR fix an existing issue?
- [x] Have you read the contributing guidelines?
- [x] Have you made sure that the title is accurate and descriptive of the changes?
Thank you so much for contributing to Meilisearch!
Co-authored-by: Thearas <thearas850@gmail.com >
2022-04-07 11:50:21 +00:00
d5e33637b7
Merge #2296
...
2296: disable typo for attributes r=curquiza a=MarinPostma
Introduce the disable typos on attribute feature as per https://github.com/meilisearch/specifications/pull/117 .
Co-authored-by: ad hoc <postma.marin@protonmail.com >
2022-04-06 18:10:45 +00:00
c321ac61b5
Merge #2259
...
2259: disable typos on words r=MarinPostma a=MarinPostma
Introduce the disable typo setting as per https://github.com/meilisearch/specifications/pull/117 .
waiting for https://github.com/meilisearch/milli/pull/474 .
Co-authored-by: ad hoc <postma.marin@protonmail.com >
2022-04-06 17:40:08 +00:00
67dea08a0a
feat(http, lib): enable disable typos on attributes
2022-04-06 19:25:12 +02:00
e9f66b8766
feat(all): introduce disable typo on words
2022-04-06 19:16:36 +02:00
dd43ba6234
feat(all): introduce disable typos
2022-04-06 19:10:12 +02:00
27a88bcd47
feat(all): introduce minWordLengthForTypo
...
fix typo in settting
skip serializing not set typo settings
2022-04-06 19:03:24 +02:00
065fe19452
Merge #2249
...
2249: feat(all): introduce disable typos r=irevoire a=MarinPostma
Introduce the disable typo setting, that allows disabling typos for an index.
waiting on https://github.com/meilisearch/milli/pull/469
Co-authored-by: ad hoc <postma.marin@protonmail.com >
2022-04-06 16:55:46 +00:00
981fba5b44
feat(all): introduce disable typos
2022-04-06 15:47:48 +02:00
09734f0732
Merge #2294
...
2294: chore(lib): bump milli to 0.25.0 r=MarinPostma a=MarinPostma
bump milli
Co-authored-by: ad hoc <postma.marin@protonmail.com >
2022-04-06 13:19:20 +00:00
a523828f61
chore(lib): bump milli to 0.25.0
2022-04-06 15:03:10 +02:00
4ae7aea3b2
Merge #486
...
486: Update version (v0.25.0) r=curquiza a=curquiza
v0.25.0 will be released once #478 is merged
Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com >
2022-04-06 11:40:41 +00:00
aadb0c58c9
Merge #478
...
478: Disable typo on attribute r=Kerollmops a=MarinPostma
disable typo on attributes
Co-authored-by: ad hoc <postma.marin@protonmail.com >
2022-04-05 23:45:35 +00:00
86249e2ae4
add missing \t in cli update display
...
Co-authored-by: Clément Renault <clement@meilisearch.com >
2022-04-05 21:35:06 +02:00
b799f3326b
rename merge_nothing to merge_ignore_values
2022-04-05 18:44:35 +02:00
fa7d3a37c0
Make some cleaning and add comments
2022-04-05 17:48:56 +02:00
3bb1e35ada
Fix match count
2022-04-05 17:48:45 +02:00
56e0edd621
Put crop markers direclty around words
2022-04-05 17:41:32 +02:00
a93cd8c61c
Fix prefix highlight with special chars
2022-04-05 17:41:32 +02:00
b3f0f39106
Make some cleaning
2022-04-05 17:41:32 +02:00
6dc345bc53
Test and Fix prefix highlight
2022-04-05 17:41:32 +02:00
bd30ee97b8
Keep separators at start of the croped string
2022-04-05 17:41:32 +02:00
29c5f76d7f
Use new matcher in http-ui
2022-04-05 17:41:32 +02:00
734d0899d3
Publish Matcher
2022-04-05 17:41:32 +02:00
4428cb5909
Add some tests and fix some corner cases
2022-04-05 17:41:32 +02:00
844f546a8b
Add matches algorithm V1
2022-04-05 17:41:32 +02:00
3be1790803
Add crop algorithm with naive match algorithm
2022-04-05 17:41:32 +02:00
d96e72e5dc
Create formater with some tests
2022-04-05 17:41:32 +02:00
201fea0fda
limit extract_word_docids memory usage
2022-04-05 14:14:15 +02:00
5cfd3d8407
add exact attributes documentation
2022-04-05 14:10:22 +02:00
7f7958f815
Merge #2277
...
2277: fix(http): fix panic when sending document update without content type header r=MarinPostma a=MarinPostma
I found a panic when pushing documents without a content-type. This fixes is by returning unknown instead of crashing.
Co-authored-by: ad hoc <postma.marin@protonmail.com >
2022-04-05 12:07:17 +00:00
9eec44dd98
Update version (v0.25.0)
2022-04-05 12:06:42 +02:00
b85cd4983e
remove field_id_from_position
2022-04-05 09:50:34 +02:00
dac81b2d44
add missing \n in cli settings
2022-04-05 09:48:56 +02:00
ab185a59b5
fix infos
2022-04-05 09:46:56 +02:00
59e41d98e3
add comments to integration test
2022-04-04 21:17:06 +02:00
1810927dbd
rephrase exact_attributes doc
2022-04-04 21:04:49 +02:00
b7694c34f5
remove println
2022-04-04 21:00:07 +02:00
6cabd47c32
fix typo in comment
2022-04-04 20:59:20 +02:00
9963f11172
fix infos crate compilation issue
2022-04-04 20:54:03 +02:00
c8d3a09af8
add integration test for disabel typo on attributes
2022-04-04 20:54:03 +02:00
bfd81ce050
add exact atttributes to cli settings
2022-04-04 20:54:03 +02:00
6b2c2509b2
fix bug in exact search
2022-04-04 20:54:03 +02:00
56b4f5dce2
add exact prefix to query_docids
2022-04-04 20:54:03 +02:00
21ae4143b1
add exact_word_prefix to Context
2022-04-04 20:54:03 +02:00
e8f06f6c06
extract exact_word_prefix_docids
2022-04-04 20:54:03 +02:00
6dd2e4ffbd
introduce exact_word_prefix database in index
2022-04-04 20:54:03 +02:00
ba0bb29cd8
refactor WordPrefixDocids to take dbs instead of indexes
2022-04-04 20:54:02 +02:00