您好,登錄后才能下訂單哦!
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里的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。