
MyBatis-Plus
增强版ORM框架的终极指南
Elasticsearch 是一个开源的 分布式搜索和分析引擎,基于 Apache Lucene 构建,由 Elastic 公司开发并维护。它专为 实时数据检索、日志分析、全文搜索 等场景设计,支持 PB 级数据的快速查询,广泛应用于 日志管理(ELK Stack)、企业搜索、安全分析(SIEM) 等领域。Elasticsearch 的核心优势在于其 高性能、可扩展性和丰富的查询 DSL(领域特定语言),使其成为现代数据架构的关键组件。
Elasticsearch SQL
执行类 SQL 查询术语 | 说明 |
---|---|
Index | 类似数据库的“表”,存储相关文档(如 logs-2023 ) |
Document | 数据的基本单元(JSON 格式),如一条日志或商品信息 |
Shard | 索引的分片,支持水平扩展(默认每个索引 1 主分片 + 1 副本) |
Node | 集群中的单个服务器节点(角色:Master/Data/Ingest/Coordinating) |
Analyzer | 文本分词器(如标准分词器、IK 中文分词器) |
docker run -d --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:8.12.0
访问 http://localhost:9200
验证运行状态。
# 创建索引
curl -X PUT "localhost:9200/products" -H "Content-Type: application/json" -d'
{
"mappings": {
"properties": {
"name": { "type": "text" },
"price": { "type": "double" }
}
}
}'
# 插入文档
curl -X POST "localhost:9200/products/_doc/1" -H "Content-Type: application/json" -d'
{
"name": "智能手机",
"price": 3999.99
}'
curl -X GET "localhost:9200/products/_search" -H "Content-Type: application/json" -d'
{
"query": {
"match": { "name": "手机" }
}
}'
wildcard
模糊查询(改用 n-gram
分词器)filter
替代 query
缓存高频过滤条件本站速览导航提供的Elasticsearch都来源于网络,不保证外部链接的准确性和完整性,同时,对于该外部链接的指向,不由速览导航实际控制,在2025年4月1日 下午8:38收录时,该网页上的内容,都属于合规合法,后期网页的内容如出现违规,可以直接联系网站管理员进行删除,速览导航不承担任何责任。