


In modern web applications, the amount of data is getting larger and larger, but so are user expectations and access to data. Therefore, search technology is becoming increasingly important to meet user expectations and provide a better user experience. Full-text search is a powerful technology that can quickly index, search, and sort large amounts of data. In this regard, Elasticsearch is a leading open source search engine that provides many advanced features as well as high availability, easy scalability and other advantages.
In this article, we will introduce how to use Elasticsearch to achieve full-text retrieval through PHP. We will start with the environment setup, including the installation of Elasticsearch and PHP, and then provide an in-depth introduction from the three main aspects of indexing, search and analysis.
1. Environment Settings
First, install Elasticsearch locally or on the server. Elasticsearch can be downloaded and installed from the official website or through the package manager.
Secondly, install the PHP client of Elasticsearch through Composer, which is elasticsearch-php. It provides many convenient methods and classes to call the Elasticsearch API.
composer require elasticsearch/elasticsearch
After the installation is complete, configure the following in the PHP file:
require 'vendor/autoload.php';
$client = ElasticsearchClientBuilder::create()->build();
In this way, a client is created that communicates with the Elasticsearch server.
2. Index
In Elasticsearch, the index is a data collection used to store and quickly find data. We can insert data into the index using elasticsearch-php's API.
- Create an index
First, we need to create a new index. We use the following code to create a type named "my_type" in the index named "my_index".
$params = [
'index' => 'my_index', 'body' => [ 'mappings' => [ 'my_type' => [ 'properties' => [ 'title' => ['type' => 'text'], 'body' => ['type' => 'text'], ] ] ] ]
];
$response = $client->indices()->create($params);
The "title" and "body" fields in the "properties" array are of type "text", which means they will be full-text indexed. In practice, we will set indexes and field types according to specific needs.
In this way, we successfully created an index named "my_index".
- Add document data to the index
Insert the document into the index using the following code:
$params = [
'index' => 'my_index', 'type' => 'my_type', 'body' => [ 'title' => 'PHP Elasticsearch 全文检索', 'body' => 'Elasticsearch 是一个领先的全文搜索引擎,其功能包括分布式、高可用、实时搜索和分析能力等。', ]
];
$response = $client->index($params);
Here, we insert a document with a title and body into the index.
- Update Document
If you need to update an existing document in the index, use the following code:
$params = [
'index' => 'my_index', 'type' => 'my_type', 'id' => '1', 'body' => [ 'doc' => [ 'title' => '修改后的标题', 'body' => '修改后的正文内容', ] ]
];
$response = $client->update($params);
It should be noted that the ID of the document must be provided when updating.
- Delete Document
If you need to delete an existing document, use the following code:
$params = [
'index' => 'my_index', 'type' => 'my_type', 'id' => '1'
] ;
$response = $client->delete($params);
In this way, we have completed the creation, insertion, update and deletion of indexes and documents.
3. Search
Let’s take a look at how to use the elasticsearch-php API to search.
- Simple Query
First, let’s execute a simple query:
$params = [
'index' => 'my_index', 'type' => 'my_type', 'body' => [ 'query' => [ 'match' => [ 'title' => 'PHP' ] ] ]
];
$response = $client->search($params);
In the above code, we execute a match query to query all documents in the index that contain the "PHP" keyword . The search results will be stored in the $response variable.
- Multi-condition query
If you need to query multiple conditions, you can use bool query to combine multiple conditions:
$params = [
'index' => 'my_index', 'type' => 'my_type', 'body' => [ 'query' => [ 'bool' => [ 'must' => [ [ 'match' => [ 'title' => 'PHP' ] ], [ 'match' => [ 'body' => '搜索引擎' ] ] ] ] ] ]
];
$response = $client->search($params);
Here, we specify two query conditions that must be met at the same time through the must parameter .
- Paging query
If the amount of data is large, we can paginate the search results:
$params = [
'index' => 'my_index', 'type' => 'my_type', 'body' => [ 'from' => 0, 'size' => 10, 'query' => [ 'match' => [ 'title' => 'PHP' ] ] ]
];
$response = $client->search($params);
Specify the offset and size of the result set through the from and size parameters.
- Sort by score
For more accurate search results, Elasticsearch calculates a relevance score for each document. Sorting by rating can be done with the following code:
$params = [
'index' => 'my_index', 'type' => 'my_type', 'body' => [ 'query' => [ 'match' => [ 'title' => 'PHP' ] ], 'sort' => [ '_score' => [ 'order' => 'desc' ] ] ]
];
$response = $client->search($params);
This way the query results will be sorted from high to low by relevance score.
4. Analysis
Elasticsearch supports a variety of powerful analysis and aggregation functions, which we can use to obtain deeper information about the data set.
- Aggregation
The following code can obtain the top 10 words with the highest frequency of occurrence in the "title" field:
$params = [
'index' => 'my_index', 'type' => 'my_type', 'size' => 0, 'body' => [ 'aggs' => [ 'top_titles' => [ 'terms' => [ 'field' => 'title.keyword', 'size' => 10 ] ] ] ]
];
$response = $client->search($params);
Specify the size parameter to skip returning documents and only return aggregated results.
- Analyzer
Elasticsearch also provides many powerful analyzers to analyze and process text. The following code demonstrates how to use the Chinese parser to process text:
$params = [
'index' => 'my_index', 'body' => [ 'settings' => [ 'analysis' => [ 'analyzer' => [ 'my_analyzer' => [ 'type' => 'custom', 'tokenizer' => 'ik_max_word' ] ] ] ] ]
];
$response = $client->indices()- >putSettings($params);
这里,我们为名为“my_analyzer”的分析器指定了“ik_max_word”分词器。
下面的代码可以使用这个分析器来分析文本:
$params = [
'index' => 'my_index', 'body' => [ 'query' => [ 'query_string' => [ 'query' => '搜索', 'analyzer' => 'my_analyzer', 'default_field' => 'title' ] ] ]
];
$response = $client->search($params);
这样,我们就可以使用中文分析器来分析中文文本了。
总结
在本文中,我向您介绍了如何使用elasticsearch-php的API来创建、添加、更新和删除索引和文档,以及如何使用搜索API来执行简单和复杂的查询。此外,我还介绍了使用聚合和分析器来处理数据的相关技术。
随着数据集规模的增加,Elasticsearch的重要性逐渐增加。只要您熟悉它的API,您就可以通过PHP轻松地利用其强大的搜索和分析能力来优化您的Web应用程序。
The above is the detailed content of PHP development: How to use Elasticsearch to implement full-text search. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
