inetstudio / products-finder
Package for products catalog
Installs: 4 505
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- ext-curl: *
- ext-simplexml: *
- inetstudio/admin-panel: ^10.0
- inetstudio/classifiers: ^10.0
- inetstudio/meta: ^10.0
- inetstudio/reviews: ^10.0
- dev-master
- v10.0.0
- v8.1.4
- v8.1.3
- v8.1.2
- v8.1.1
- v8.1.0
- v8.0.0
- v7.1.1
- v7.1.0
- v7.0.1
- v7.0.0
- v6.3.1
- v6.3.0
- v6.2.1
- v6.2.0
- v6.1.1
- v6.1.0
- v6.0.1
- v6.0.0
- v1.8.47
- v1.8.46
- v1.8.45
- v1.8.44
- v1.8.43
- v1.8.42
- v1.8.41
- v1.8.40
- v1.8.39
- v1.8.38
- v1.8.37
- v1.8.36
- v1.8.35
- v1.8.34
- v1.8.33
- v1.8.32
- v1.8.31
- v1.8.30
- v1.8.29
- v1.8.28
- v1.8.27
- v1.8.26
- v1.8.25
- v1.8.24
- v1.8.23
- v1.8.22
- v1.8.21
- v1.8.20
- v1.8.19
- v1.8.18
- v1.8.17
- v1.8.16
- v1.8.15
- v1.8.14
- v1.8.13
- v1.8.12
- v1.8.11
- v1.8.10
- v1.8.9
- v1.8.8
- v1.8.7
- v1.8.6
- v1.8.5
- v1.8.4
- v1.8.3
- v1.8.2
- v1.8.1
- v1.8.0
- v1.7.1
- v1.7.0
- dev-L-8
- dev-media-refactoring
- dev-L-7
- dev-L-5.8
- dev-analysis-q2ej6A
- dev-analysis-zD9G2k
- dev-scrutinizer-patch-2
- dev-scrutinizer-patch-1
- dev-analysis-q1gaDN
- dev-L-5.7
This package is auto-updated.
Last update: 2025-03-01 00:26:21 UTC
README
curl -X PUT "localhost:9200/app_index_products_finder" -H 'Content-Type: application/json' -d'
{
"settings": {
"analysis": {
"filter": {
"ru_stop": {
"type": "stop",
"stopwords": "_russian_"
},
"ru_stemmer": {
"type": "stemmer",
"language": "russian"
}
},
"analyzer": {
"default": {
"char_filter": [
"html_strip"
],
"tokenizer": "standard",
"filter": [
"lowercase",
"ru_stop",
"ru_stemmer"
]
}
}
}
},
"mappings":{
"properties":{
"type": {
"type":"keyword"
},
"id":{
"type":"integer"
},
"brand":{
"type":"text"
},
"series":{
"type":"text"
},
"title":{
"type":"text"
},
"description":{
"type":"text"
},
"benefits":{
"type":"text"
},
"how_to_use":{
"type":"text"
},
"search_field":{
"type":"text"
},
"classifiers":{
"type":"nested"
}
}
}
}
'