dried food! Illustrated Elastic search secret collection, practical enough
Inverted index
At present, the mainstream index technology of full-text search engine is the way of inverted index. The traditional way to save data is: record → word. The way of storing data in inverted index is: word → record. The inverted index is constructed based on word segmentation technology. When each record saves data, it w ...
Added by mastercjb on Thu, 10 Feb 2022 00:39:39 +0200
ES introduction learning notes
Introduction:
ES is a non relational database of distributed documents (a document is similar to a single record in a relational database). Each field of the document will be indexed by default, and the data of each field can be searched. It can be horizontally extended to hundreds of servers to store and process PB level data. ES is based on ...
Added by daloss on Mon, 07 Feb 2022 03:25:07 +0200
Operating ES through Spring Data Elasticsearch
Elasticsearch
Elastic search (es) is an open source, distributed, RESTful interface full-text search engine based on Lucene. Elasticsearch is also a distributed document database, in which each field is indexed and searchable. It can be extended to hundreds of servers to store and process PB level data. It can store, search and analyze a large ...
Added by huzefahusain on Tue, 01 Feb 2022 17:10:58 +0200
If CSDN changes these two painful shortcomings, it will be better to use
§ 01 search for heartache
when you have more blog diaries, you really can't remember the title clearly. But what is the purpose of blogging? Is to help you recover the information you wrote down when you need it. However, looking at the search interface of CSDN for bloggers, I feel heartache every time I apply it ...
Added by Dave2222 on Fri, 28 Jan 2022 13:13:14 +0200
Introduction to Elasticsearch proficient in the installation and use of Hanlp word splitter
1, Version and correspondence
Plugin version
Branch version
7.x
7.x
6.x
6.x
2, Installation steps
1. Download and install the Plugin Release version corresponding to ES
a. download the corresponding release installation package. The latest release package can be downloaded from baidu disk (link: Baidu network disk, please ente ...
Added by Hypnos on Mon, 24 Jan 2022 09:31:28 +0200
[elasticsearch source code recovery process] es 7.7
Replica fragmentation request process, function entry: industriesclusterstateservice createOrUpdateShards
org.elasticsearch.indices.cluster.IndicesClusterStateService
private void createOrUpdateShards(final ClusterState state) {
RoutingNode localRoutingNode = state.getRoutingNodes().node(state.nodes().getLocalNodeId());
if ...
Added by millercj on Fri, 21 Jan 2022 05:54:02 +0200
ElasticSearch related knowledge points
brief introduction
An open source search engine based on Apache Lucene(TM). Due to the complexity of using Lucene, ElasticSearch aims to make full-text search simple through RESTful API.
Basic concepts
1. Near real time NRT
When full-text search is not true, there is usually a delay. Different search engines have a core search delay time. T ...
Added by [ArcanE] on Mon, 17 Jan 2022 18:54:32 +0200
ES series tutorial 02: Elasticsearch one day tour
This article was first published in the official account of the geek barracks. Original addressThe best way to learn elastic search (hereinafter referred to as ES) is to practice more. In this series of tutorials, I will use the small project "online bookstore" throughout each chapter. The background of this project is very simple. Ea ...
Added by delphi123 on Wed, 05 Jan 2022 03:04:48 +0200
Elasticsearch installation and grammar learning
1, Introduction
With the help of the official website
Introduction to Elasticsearch You know, for search (and analysis) Elasticsearch is the core distributed search and analysis engine of Elastic Stack. Logstash and Beats help collect, aggregate and enrich your data and store it in elasticsearch. With Kibana, you can interactively explore, ...
Added by Hitman2oo2 on Tue, 04 Jan 2022 01:31:00 +0200
Elasticsearch 7.X Ik source code interpretation, and custom remote dynamic thesaurus
1, ik remote Thesaurus
The previous article explained ik as a whole, including the remote dynamic thesaurus. However, the previous article is based on nginx + static txt file. After modifying the file with nginx, the last modified attribute is automatically added. This method is also officially recommended: Officials recommend using another t ...
Added by socalnate on Mon, 03 Jan 2022 12:30:30 +0200