zl程序教程

您现在的位置是:首页 >  工具

当前栏目

构建检索服务及商品上架到ES库

ES 构建 商品 上架
2023-09-27 14:19:49 时间

1 创建检索服务模块

1.1 ElasticSearch-Rest-Client

1)9300:TCP
spring-data-elasticsearch:transport-api.jar
Spring Boot 版本不同,transport-api.jar不同,不能适配 elasticsearch 版本
官方7.x已经不建议使用,8以后就要废弃
9200:HTTP
JestClient:非官方,更新慢
RestTemplate:模拟发HTTP请求,ES很多操作需要自己封装,很麻烦
HttpClient/OkHttp:模拟发HTTP请求,ES很多操作需要自己封装,很麻烦
ElasticSearch-Rest-Client:官方RestClient,封装了ES操作,API层次分明,上手简单。

官方文档:https://www.elastic.co/guide/en/elasticsearc