中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

elasticsearch怎樣運用進PHP里

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

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

  1.環境要求:PHP_VERSION>=5.3.9,composer工具

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

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

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

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

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

創建索引

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

插入索引數據

  include('./vendor/autoload.php');$elastic=newElasticsearch\Client();$index[‘index’]=‘log’;//索引名稱$index[‘type’]=‘ems_run_log’;//類型名稱$index[‘id’]=1//不指定id,系統會自動生成唯一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);

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

辽阳市| 兴国县| 宿州市| 沙河市| 桃源县| 眉山市| 屏东县| 维西| 连南| 修文县| 红河县| 都昌县| 日喀则市| 溧阳市| 临洮县| 镇平县| 琼结县| 辉南县| 义乌市| 鄄城县| 永德县| 台中市| 巴林右旗| 建德市| 宁远县| 洪湖市| 永修县| 闵行区| 高阳县| 延川县| 新郑市| 阜宁县| 西乡县| 南部县| 云霄县| 乌拉特前旗| 民乐县| 蓝山县| 专栏| 长垣县| 中超|