溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

elasticsearch怎樣運用進PHP里

發(fā)布時間:2021-10-14 17:01:17 來源:億速云 閱讀:104 作者:柒染 欄目:編程語言

elasticsearch怎樣運用進PHP里,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

  1.環(huán)境要求:PHP_VERSION>=5.3.9,composer工具

  2.在E盤新建文件夾命名為elastic,,拷貝composer.phar到E:/elastic目錄下面

  3.打開命令行窗口,進入E:/elastic

  4.在命令行運行:phpcomposer.pharrequireelasticsearch/elasticsearch

  5.此時E:/elastic目錄下會出現(xiàn)一個vendor目錄,安裝成功

  6.使用方法:require'vendor/autoload.php';$client=newElasticsearch\Client();

創(chuàng)建索引

  include('./vendor/autoload.php');$elastic=newElasticsearch\Client();$index[‘index’]=‘log’;//索引名稱$index[‘type’]=‘ems_run_log’;//類型名稱$data[‘body’][‘settings’][‘number_of_shards’]=5;//主分片數(shù)量$data[‘body’][‘settings’][‘number_of_replicas’]=0;//從分片數(shù)量$elastic->indices()->create($index);

插入索引數(shù)據(jù)

  include('./vendor/autoload.php');$elastic=newElasticsearch\Client();$index[‘index’]=‘log’;//索引名稱$index[‘type’]=‘ems_run_log’;//類型名稱$index[‘id’]=1//不指定id,系統(tǒng)會自動生成唯一id$index[‘body’]=array(‘mac’=>'fcd5d900beca',‘customer_id’=>3,‘product_id’=>5,‘version’=>2);$elastic->index($index);

查詢

  include('./vendor/autoload.php');$elastic=newElasticsearch\Client();$index[‘index’]=‘log’;//索引名稱$index[‘type’]=‘ems_run_log’;//類型名稱$index[‘body’][‘query’][‘match’][‘mac’]=‘fcd5d900beca’;$index[‘size’]=10;$index[‘from’]=200;$elastic->search($index);

刪除文檔

  include('./vendor/autoload.php');$elastic=newElasticsearch\Client();$index['index']='test';//索引名稱$index['type']='ems_test';//類型名稱$index['id']=2;$elastic->delete($index);

看完上述內(nèi)容,你們掌握elasticsearch怎樣運用進PHP里的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI