
elasticsearch
xinqing5130
发现问题,记录一下
展开
-
elasticsearch基操
创建所有 PUT penn 查询配置 GET /penn/_settings 配置mapping POST /penn/_mapping?pretty { "properties":{ "title":{ "type":"text", "store":"true" }, "description":{ "type":"text", "index":"false" ...原创 2020-09-29 16:25:44 · 314 阅读 · 0 评论 -
spring-data-elasticsearch进阶
假如我们有这样的sql查询场景 SELECT * FROM myindex where (aa = 100 or bb = 100) and (cc = 66 and cc = 77) 怎样在es里面操作? 首先,上面的sql对应的json query 是这样的 POST eas_question/_search { "query": { "bool": { "must": [ { "bool": { "shou原创 2020-09-24 16:05:45 · 181 阅读 · 0 评论 -
elasticsearch安装教程
下载地址 https://www.elastic.co/cn/downloads/past-releases/elasticsearch-6-2-4 选择zip。 解压到磁盘:D:\dev\elasticsearch-6.2.4 cd bin 双击运行elasticsearch.bat 在浏览器打开http://127.0.0.1:9200 如果出现上面这个页面,则表...原创 2019-11-05 10:44:01 · 894 阅读 · 0 评论