ES基础(二十三) Space Jam,一次全文搜索的实例
环境要求
- Python 2.7.15
- 可以使用pyenv管理多个python版本(可选)
进入 tmdb-search目录
Run pip install -r requirements.txt Run python ./ingest_tmdb_from_file.py
课程demo
POST tmdb/_search { "_source": ["title","overview"], "query": { "match_all": {} } } POST tmdb/_search { "_source": ["title","overview"], "query": { "multi_match": { "query": "basketball with cartoon aliens", "fields": ["title","overview"] } }, "highlight" : { "fields" : { "overview" : { "pre_tags" : ["\\033[0;32;40m"], "post_tags" : ["\\033[0m"] }, "title" : { "pre_tags" : ["\\033[0;32;40m"], "post_tags" : ["\\033[0m"] } } } }
本文来自博客园,作者:秋华,转载请注明原文链接:https://www.cnblogs.com/qiu-hua/p/14196918.html