PHP searches based on ElasticSearch
ElasticSearch is a search server based on Lucene. It provides a distributed multi-user capable full-text search engine based on a RESTful web interface. Developed in Java and released as open source under the terms of the Apache license, Elasticsearch is a popular enterprise-level search engine. Designed for use in cloud computing, it can achieve real-time search, is stable, reliable, fast, and is easy to install and use.
Course Recommendation →: "Elasticsearch Full Text Search Practical Combat" (Practical Video)
From the course "Concurrency Solution for Tens of Millions of Data (Theory and Practical Combat)"
PHP Search Based on ElasticSearch
Doing Search I thought of ElasticSearch , and it also supports PHP, so I made a simple example for testing. It felt good and I made a record.
Environment
php 7.2
elasticsearch 6.2 Download
elasticsearch-php 6 Download
Install elasticsearch
Download the source file, unzip it, create a new user, and change the directory's group to this user, because elasticsearch cannot be started with the root user.
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.tar.gz tar zxvf elasticsearch-6.2.3.tar.gz useradd elasticsearch password elasticsearch chown elasticsearch:elasticsearch elasticsearch-6.2.3 cd elasticsearch-6.2.3 ./bin/elasticsearch // 启动
Install PHP extension
I am using composer Install elasticsearch-php. Add "elasticsearch/elasticsearch": "~6.0" to the composer.json file and execute composer update.
{ "require": { // ... "elasticsearch/elasticsearch": "~6.0" // ... } }
Test example
Create table and test data
I have prepared an article table for testing. The first is to create a table, and then write the test data. After the preparation is completed, start editing the test cases.
create table articles( id int not null primary key auto_increment, title varchar(200) not null comment '标题', content text comment '内容' ); insert into articles(title, content) values ('Laravel 测试1', 'Laravel 测试文章内容1'), ('Laravel 测试2', 'Laravel 测试文章内容2'), ('Laravel 测试3', 'Laravel 测试文章内容3');
Read data from Mysql
try { $db = new PDO('mysql:host=127.0.0.1;dbname=test', 'root', 'root'); $sql = 'select * from articles'; $query = $db->prepare($sql); $query->execute(); $lists = $query->fetchAll(); print_r($lists); } catch (Exception $e) { echo $e->getMessage(); }
Instantiation
require './vendor/autoload.php'; use Elasticsearch\ClientBuilder; $client = ClientBuilder::create()->build();
Explanation of noun: Index is equivalent to MySQL The table in , the document is equivalent to the row record in MySQL
elasticsearch ’s dynamic nature, the index is automatically created when the first document is added and some default settings.
Add document to index
foreach ($lists as $row) { $params = [ 'body' => [ 'id' => $row['id'], 'title' => $row['title'], 'content' => $row['content'] ], 'id' => 'article_' . $row['id'], 'index' => 'articles_index', 'type' => 'articles_type' ]; $client->index($params); }
Get document from index
$params = [ 'index' => 'articles_index', 'type' => 'articles_type', 'id' => 'articles_1' ]; $res = $client->get($params); print_r($res);
Delete document from index
$params = [ 'index' => 'articles_index', 'type' => 'articles_type', 'id' => 'articles_1' ]; $res = $client->delete($params); print_r($res);
Delete index
$params = [ 'index' => 'articles_index' ]; $res = $client->indices()->delete($params); print_r($res);
Create index
$params['index'] = 'articles_index'; $params['body']['settings']['number_of_shards'] = 2; $params['body']['settings']['number_of_replicas'] = 0; $client->indices()->create($params);
Search
$params = [ 'index' => 'articles_index', 'type' => 'articles_type', ]; $params['body']['query']['match']['content'] = 'Laravel'; $res = $client->search($params); print_r($res);
The above is the detailed content of PHP searches based on ElasticSearch. For more information, please follow other related articles on the PHP Chinese website!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
