mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-11 00:06:34 +03:00
bug fixes
This commit is contained in:
parent
67dc026c7e
commit
a6740c4faf
|
@ -12,13 +12,8 @@ def search_song(query):
|
||||||
search_query = ES_Q(
|
search_query = ES_Q(
|
||||||
"bool",
|
"bool",
|
||||||
should=[
|
should=[
|
||||||
# Boosting the exact matches using match_phrase
|
ES_Q("match_phrase", name__exact=query, boost=5),
|
||||||
ES_Q("bool", should=[ES_Q("match_phrase", name__exact=query)], boost=3),
|
ES_Q("match_phrase", name__raw=query.lower(), boost=2.5),
|
||||||
ES_Q(
|
|
||||||
"bool",
|
|
||||||
should=[ES_Q("match_phrase", name__raw=query.lower())],
|
|
||||||
boost=2.5,
|
|
||||||
), # Case-insensitive exact match with boost
|
|
||||||
ES_Q("match", name__russian=query),
|
ES_Q("match", name__russian=query),
|
||||||
ES_Q(
|
ES_Q(
|
||||||
"multi_match",
|
"multi_match",
|
||||||
|
@ -30,11 +25,12 @@ def search_song(query):
|
||||||
"authors.name.raw^3",
|
"authors.name.raw^3",
|
||||||
"album.name^3",
|
"album.name^3",
|
||||||
"album.name.raw^3",
|
"album.name.raw^3",
|
||||||
"meta.*", # Assuming dynamic mapping for meta fields
|
|
||||||
],
|
],
|
||||||
type="best_fields",
|
type="best_fields",
|
||||||
fuzziness="AUTO",
|
fuzziness="AUTO",
|
||||||
),
|
),
|
||||||
|
ES_Q("match", meta__lyrics=query, fuzziness="AUTO", boost=0.5),
|
||||||
|
ES_Q("match", meta__other_field=query, fuzziness="AUTO"),
|
||||||
ES_Q(
|
ES_Q(
|
||||||
"nested",
|
"nested",
|
||||||
path="authors",
|
path="authors",
|
||||||
|
@ -46,6 +42,17 @@ def search_song(query):
|
||||||
),
|
),
|
||||||
boost=2,
|
boost=2,
|
||||||
),
|
),
|
||||||
|
ES_Q(
|
||||||
|
"nested",
|
||||||
|
path="album",
|
||||||
|
query=ES_Q(
|
||||||
|
"multi_match",
|
||||||
|
query=query,
|
||||||
|
fields=["album.name", "album.name.raw"],
|
||||||
|
fuzziness="AUTO",
|
||||||
|
),
|
||||||
|
boost=2,
|
||||||
|
),
|
||||||
ES_Q("wildcard", name__raw=f"*{query.lower()}*"),
|
ES_Q("wildcard", name__raw=f"*{query.lower()}*"),
|
||||||
ES_Q("wildcard", meta__raw=f"*{query.lower()}*"),
|
ES_Q("wildcard", meta__raw=f"*{query.lower()}*"),
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue
Block a user