mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-04 19:30:13 +00:00
add english analyzer for main text fields for serching
This commit is contained in:
parent
b6424e0e56
commit
2a774c3d3e
@ -25,6 +25,7 @@ INDEX_CONFIG = [
|
|||||||
},
|
},
|
||||||
"channel_name": {
|
"channel_name": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
"analyzer": "english",
|
||||||
"fields": {
|
"fields": {
|
||||||
"keyword": {
|
"keyword": {
|
||||||
"type": "keyword",
|
"type": "keyword",
|
||||||
@ -64,6 +65,7 @@ INDEX_CONFIG = [
|
|||||||
},
|
},
|
||||||
"channel_name": {
|
"channel_name": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
"analyzer": "english",
|
||||||
"fields": {
|
"fields": {
|
||||||
"keyword": {
|
"keyword": {
|
||||||
"type": "keyword",
|
"type": "keyword",
|
||||||
@ -88,8 +90,16 @@ INDEX_CONFIG = [
|
|||||||
},
|
},
|
||||||
"description": {"type": "text"},
|
"description": {"type": "text"},
|
||||||
"media_url": {"type": "keyword", "index": False},
|
"media_url": {"type": "keyword", "index": False},
|
||||||
|
"tags": {
|
||||||
|
"type": "text",
|
||||||
|
"analyzer": "english",
|
||||||
|
"fields": {
|
||||||
|
"keyword": {"type": "keyword", "ignore_above": 256}
|
||||||
|
},
|
||||||
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
"analyzer": "english",
|
||||||
"fields": {
|
"fields": {
|
||||||
"keyword": {
|
"keyword": {
|
||||||
"type": "keyword",
|
"type": "keyword",
|
||||||
@ -171,12 +181,18 @@ INDEX_CONFIG = [
|
|||||||
"playlist_description": {"type": "text"},
|
"playlist_description": {"type": "text"},
|
||||||
"playlist_name": {
|
"playlist_name": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
"analyzer": "english",
|
||||||
"fields": {
|
"fields": {
|
||||||
"keyword": {
|
"keyword": {
|
||||||
"type": "keyword",
|
"type": "keyword",
|
||||||
"ignore_above": 256,
|
"ignore_above": 256,
|
||||||
"normalizer": "to_lower",
|
"normalizer": "to_lower",
|
||||||
}
|
},
|
||||||
|
"search_as_you_type": {
|
||||||
|
"type": "search_as_you_type",
|
||||||
|
"doc_values": False,
|
||||||
|
"max_shingle_size": 3,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"playlist_channel": {
|
"playlist_channel": {
|
||||||
|
Loading…
Reference in New Issue
Block a user