Table of Contents
Initialization
Insert a document
Get a document
Query a document
Delete a document
Delete an index
Create an index
Home Backend Development PHP Tutorial How to use Elasticsearch in PHP

How to use Elasticsearch in PHP

Jul 07, 2018 am 11:50 AM
elasticsearch

This article mainly introduces the method of using Elasticsearch in PHP, which has certain reference value. Now I share it with everyone. Friends in need can refer to it

Course Recommendations→ : "Elasticsearch full-text search practice" (practical video)

From the course"Ten million-level data concurrency solution (theoretical practice)"

Using Elasticsearch in PHP

composer require elasticsearch/elasticsearch
Copy after login

will automatically load the appropriate version! My php is 5.6, it will automatically load the 5.3 elasticsearch version!

Using version ^5.3 for elasticsearch/elasticsearch
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 4 installs, 0 updates, 0 removals
  - Installing react/promise (v2.7.0): Downloading (100%)         
  - Installing guzzlehttp/streams (3.0.0): Downloading (100%)         
  - Installing guzzlehttp/ringphp (1.1.0): Downloading (100%)         
  - Installing elasticsearch/elasticsearch (v5.3.2): Downloading (100%)         
Writing lock file
Generating autoload files
Copy after login

Simple use

<?php

class MyElasticSearch
{
    private $es;
    // 构造函数
    public function __construct()
    {
        include(&#39;../vendor/autoload.php&#39;);
        $params = array(
            &#39;127.0.0.1:9200&#39;
        );
        $this->es = \Elasticsearch\ClientBuilder::create()->setHosts($params)->build();
    }

    public function search() {
        $params = [
            &#39;index&#39; => &#39;megacorp&#39;,
            &#39;type&#39; => &#39;employee&#39;,
            &#39;body&#39; => [
                &#39;query&#39; => [
                    &#39;constant_score&#39; => [ //非评分模式执行
                        &#39;filter&#39; => [ //过滤器,不会计算相关度,速度快
                            &#39;term&#39; => [ //精确查找,不支持多个条件
                                &#39;about&#39; => &#39;谭&#39;
                            ]
                        ]

                    ]
                ]
            ]
        ];

        $res = $this->es->search($params);

        print_r($res);
    }
}
Copy after login
<?php
require "./MyElasticSearch.php";

$es = new MyElasticSearch();

$es->search();
Copy after login

Execution results

Array
(
    [took] => 2
    [timed_out] => 
    [_shards] => Array
        (
            [total] => 5
            [successful] => 5
            [skipped] => 0
            [failed] => 0
        )

    [hits] => Array
        (
            [total] => 1
            [max_score] => 1
            [hits] => Array
                (
                    [0] => Array
                        (
                            [_index] => megacorp
                            [_type] => employee
                            [_id] => 3
                            [_score] => 1
                            [_source] => Array
                                (
                                    [first_name] => 李
                                    [last_name] => 四
                                    [age] => 24
                                    [about] => 一个PHP程序员,热爱编程,谭康很帅,充满激情。
                                    [interests] => Array
                                        (
                                            [0] => 英雄联盟
                                        )

                                )

                        )

                )

        )

)
Copy after login

The following are some official examples:

Initialization

require &#39;../vendor/autoload.php&#39;;
use Elasticsearch\ClientBuilder;
$client = ClientBuilder::create()->build();
Copy after login

Add configuration

$hosts = [
    &#39;127.0.01:9200&#39;,         // IP + Port
];

$client = ClientBuilder::create()           // Instantiate a new ClientBuilder
->setHosts($hosts)      // Set the hosts
->build();              // Build the client object
Copy after login

or

$hosts = [
    &#39;127.0.01:9200&#39;,         // IP + Port
];

$clientBuilder = ClientBuilder::create();   // Instantiate a new ClientBuilder
$clientBuilder->setHosts($hosts);           // Set the hosts
$client = $clientBuilder->build();          // Build the client object
Copy after login

Insert a document

// Index 一个文档
$params = [
    &#39;index&#39; => &#39;my_index&#39;,
    &#39;type&#39; => &#39;my_type&#39;,
    &#39;id&#39; => &#39;my_id&#39;,
    &#39;body&#39; => [&#39;testField&#39; => &#39;abc&#39;]
];

$response = $client->index($params);
print_r($response);
Copy after login

Get a document

$params = [
    &#39;index&#39; => &#39;my_index&#39;,
    &#39;type&#39; => &#39;my_type&#39;,
    &#39;id&#39; => &#39;my_id&#39;
];

$response = $client->get($params);
print_r($response);
Copy after login

Query a document

$params = [
    &#39;index&#39; => &#39;my_index&#39;,
    &#39;type&#39; => &#39;my_type&#39;,
    &#39;body&#39; => [
        &#39;query&#39; => [
            &#39;match&#39; => [
                &#39;testField&#39; => &#39;abc&#39;
            ]
        ]
    ]
];

$response = $client->search($params);
print_r($response);
Copy after login

Delete a document

$params = [
    &#39;index&#39; => &#39;my_index&#39;,
    &#39;type&#39; => &#39;my_type&#39;,
    &#39;id&#39; => &#39;my_id&#39;
];

$response = $client->delete($params);
print_r($response);
Copy after login

The results are as follows

Array
(
    [_index] => my_index
    [_type] => my_type
    [_id] => my_id
    [_version] => 3
    [result] => deleted
    [_shards] => Array
        (
            [total] => 2
            [successful] => 1
            [failed] => 0
        )

    [_seq_no] => 2
    [_primary_term] => 1
)
Copy after login

Delete an index

$deleteParams = [
    &#39;index&#39; => &#39;my_index&#39;
];
$response = $client->indices()->delete($deleteParams);
print_r($response);
Copy after login

Create an index

$params = [
    &#39;index&#39; => &#39;my_index&#39;,
    &#39;body&#39; => [
        &#39;settings&#39; => [
            &#39;number_of_shards&#39; => 2,
            &#39;number_of_replicas&#39; => 0
        ]
    ]
];

$response = $client->indices()->create($params);
print_r($response);
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone's learning. More For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

PHP data structure basic stack

PHP methods and parameter comments for operating Beanstalkd

The above is the detailed content of How to use Elasticsearch in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use Elasticsearch and PHP for product search and recommendation How to use Elasticsearch and PHP for product search and recommendation Jul 09, 2023 pm 03:07 PM

How to use Elasticsearch and PHP for product search and recommendation Introduction: In today's e-commerce field, a good search and recommendation system is very important for users. Elasticsearch is a powerful and flexible open source search engine. Combined with PHP as a back-end development language, it can provide efficient product search and personalized recommendation functions for e-commerce websites. This article will introduce how to use Elasticsearch and PHP to implement product search and recommendation functions, and attach

How to build a user login and permission management system using Elasticsearch and PHP How to build a user login and permission management system using Elasticsearch and PHP Jul 08, 2023 pm 04:15 PM

How to use Elasticsearch and PHP to build a user login and permission management system Introduction: In the current Internet era, user login and permission management are one of the necessary functions for every website or application. Elasticsearch is a powerful and flexible full-text search engine, while PHP is a widely used server-side scripting language. This article will introduce how to combine Elasticsearch and PHP to build a simple user login and permission management system

php Elasticsearch: How to use dynamic mapping to achieve flexible search functionality? php Elasticsearch: How to use dynamic mapping to achieve flexible search functionality? Sep 13, 2023 am 10:21 AM

PHPElasticsearch: How to use dynamic mapping to achieve flexible search capabilities? Introduction: Search functionality is an integral part of developing modern applications. Elasticsearch is a powerful search and analysis engine that provides rich functionality and flexible data modeling. In this article, we will focus on how to use dynamic mapping to achieve flexible search capabilities. 1. Introduction to dynamic mapping In Elasticsearch, mapping (mapp

How to use PHP and Elasticsearch to highlight search results How to use PHP and Elasticsearch to highlight search results Jul 17, 2023 pm 09:24 PM

How to use PHP and Elasticsearch to achieve highlighted search results Introduction: In the modern Internet world, search engines have become the main way for people to obtain information. In order to improve the readability and user experience of search results, highlighting search keywords has become a common requirement. This article will introduce how to use PHP and Elasticsearch to achieve highlighted search results. 1. Preparation Before starting, we need to ensure that PHP and Elasticsearch have been installed and configured correctly.

In-depth study of Elasticsearch query syntax and practical combat In-depth study of Elasticsearch query syntax and practical combat Oct 03, 2023 am 08:42 AM

In-depth study of Elasticsearch query syntax and practical introduction: Elasticsearch is an open source search engine based on Lucene. It is mainly used for distributed search and analysis. It is widely used in full-text search of large-scale data, log analysis, recommendation systems and other scenarios. When using Elasticsearch for data query, flexible use of query syntax is the key to improving query efficiency. This article will delve into the Elasticsearch query syntax and give it based on actual cases.

Log analysis and exception monitoring based on Elasticsearch in PHP Log analysis and exception monitoring based on Elasticsearch in PHP Oct 03, 2023 am 10:03 AM

Summary of log analysis and exception monitoring based on Elasticsearch in PHP: This article will introduce how to use the Elasticsearch database for log analysis and exception monitoring. Through concise PHP code examples, it shows how to connect to the Elasticsearch database, write log data to the database, and use Elasticsearch's powerful query function to analyze and monitor anomalies in the logs. Introduction: Log analysis and exception monitoring are

Build an efficient search engine using PHP and Elasticsearch Build an efficient search engine using PHP and Elasticsearch Jul 09, 2023 pm 04:57 PM

Use PHP and Elasticsearch to build an efficient search engine Introduction: In today's Internet era, search engines are people's first choice for obtaining information. In order to provide fast and accurate search results, developers need to build efficient search engines. This article will introduce how to use PHP and Elasticsearch to build an efficient search engine, and give corresponding code examples. 1. What is Elasticsearch? Elasticsearch is a distributed open source search and analytics

PHP Elasticsearch and relational database integration practice guide PHP Elasticsearch and relational database integration practice guide Sep 13, 2023 pm 12:49 PM

Introduction to the Practical Guide for the Integration of PHPElasticsearch and Relational Databases: With the advent of the Internet and big data era, data storage and processing methods are also constantly evolving. Traditional relational databases have gradually shown some shortcomings when faced with scenarios such as massive data, high concurrent reading and writing, and full-text search. As a real-time distributed search and analysis engine, Elasticsearch has gradually attracted the attention and use of the industry through its high-performance full-text search, real-time analysis and data visualization functions. Ran

See all articles