Meilisearch: require all query terms to be matched (#28293) (#28296)

Co-authored-by: Brecht Van Lommel <brecht@blender.org>
(cherry picked from commit d2908b2794)
This commit is contained in:
Giteabot 2023-11-29 23:38:04 +08:00 committed by Earl Warren
parent 694f748f38
commit 13c0df40de
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -215,6 +215,7 @@ func (b *Indexer) Search(ctx context.Context, options *internal.SearchOptions) (
Limit: int64(limit),
Offset: int64(skip),
Sort: sortBy,
MatchingStrategy: "all",
})
if err != nil {
return nil, err