真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在PHP中使用ElasticSearch實(shí)現(xiàn)搜索-創(chuàng)新互聯(lián)

本篇文章給大家分享的是有關(guān)怎么在PHP中使用ElasticSearch實(shí)現(xiàn)搜索,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。

成都創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),蕉嶺網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)10年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:蕉嶺等地區(qū)。蕉嶺做網(wǎng)站價(jià)格咨詢:13518219792

環(huán)境


php 7.2

elasticsearch 6.2 下載

elasticsearch-php 6 下載

安裝 elasticsearch

下載源文件,解壓,重新建一個(gè)用戶,將目錄的所屬組修改為此用戶,因?yàn)?elasticsearch 無(wú)法用 root 用戶啟動(dòng)。

wget /tupian/20230522/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 // 啟動(dòng)

安裝 PHP 擴(kuò)展

我這里使用的是 composer 安裝 elasticsearch-php。在 composer.json 文件中加入 "elasticsearch/elasticsearch": "~6.0",執(zhí)行 composer update。

{

 "require": {

  // ...

  "elasticsearch/elasticsearch": "~6.0"

  // ...

 }

}

測(cè)試?yán)?/p>

創(chuàng)建表和測(cè)試數(shù)據(jù)

我這里準(zhǔn)備了一張文章表來(lái)進(jìn)行測(cè)試,首先是建表,其次寫入測(cè)試數(shù)據(jù),準(zhǔn)備工作完畢之后,就開始編輯測(cè)試用例。

create table articles(

 id int not null primary key auto_increment,

 title varchar(200) not null comment '標(biāo)題',

 content text comment '內(nèi)容'

);

insert into articles(title, content) values ('Laravel 測(cè)試1', 'Laravel 測(cè)試文章內(nèi)容1'),

('Laravel 測(cè)試2', 'Laravel 測(cè)試文章內(nèi)容2'),

('Laravel 測(cè)試3', 'Laravel 測(cè)試文章內(nèi)容3');

從 Mysql 讀取數(shù)據(jù)

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();

}

實(shí)例化

require './vendor/autoload.php';

use Elasticsearch\ClientBuilder;

$client = ClientBuilder::create()->build();

名詞解釋:索引相當(dāng)于 MySQL 中的表,文檔相當(dāng)于 MySQL 中的行記錄

elasticsearch 的動(dòng)態(tài)性質(zhì),在添加第一個(gè)文檔的時(shí)候自動(dòng)創(chuàng)建了索引和一些默認(rèn)設(shè)置。

將文檔加入索引

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);

}

從索引中獲取文檔

$params = [

 'index' => 'articles_index',

 'type' => 'articles_type',

 'id' => 'articles_1'

];

$res = $client->get($params);

print_r($res);

從索引中刪除文檔

$params = [

 'index' => 'articles_index',

 'type' => 'articles_type',

 'id' => 'articles_1'

];

$res = $client->delete($params);

print_r($res);

刪除索引

$params = [

  'index' => 'articles_index'

];

$res = $client->indices()->delete($params);

print_r($res);

創(chuàng)建索引

$params['index'] = 'articles_index'; 

$params['body']['settings']['number_of_shards'] = 2; 

$params['body']['settings']['number_of_replicas'] = 0; 

$client->indices()->create($params);

搜索

$params = [ 

 'index' => 'articles_index',

 'type' => 'articles_type',

];   

$params['body']['query']['match']['content'] = 'Laravel';

$res = $client->search($params);

print_r($res);

以上就是怎么在PHP中使用ElasticSearch實(shí)現(xiàn)搜索,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


當(dāng)前名稱:怎么在PHP中使用ElasticSearch實(shí)現(xiàn)搜索-創(chuàng)新互聯(lián)
當(dāng)前URL:http://weahome.cn/article/dhghcc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部