Elasticsearch的PHP的API使用(一)

gb4215287發表於2017-10-10

前提:在伺服器上安裝Elasticsearch  (host:192.168.1.10)  

        http://192.168.1.10:9200?_search?pretty

 

1:安裝PHP的Elasticsearch的的擴充套件(使用composer方法)

  1.1 下載composer.phar包(見composer安裝軟體  http://www.cnblogs.com/amuge/p/5998985.html)

      1.2 composer.json  

          {

    "require": {
        "elasticsearch/elasticsearch""~2.0@beta"
      }
    }

  1.3 php composer.phar install 會自動尋找composer.json這個配置檔案,下載此的擴充套件。當下載完成後會在當前執行的目錄下新添一個vendor目錄(就表示成功下載elasticsearch-php擴充套件)

 

2:將vendor目錄拷到專案的第三方的擴充套件目錄下(比如:我是用YII框架。我將vendor拷到 application/protected/vendor/elasticsearch目錄下)

 

3:測試

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_once( __DIR__ . '/../vendor/elasticsearch/autoload.php');
$hosts = array('192.168.1.10');
$client = Elasticsearch\ClientBuilder::create()->setHosts($hosts)->build();
$client = $this->getElasticClient();
$params = array(
    'index' => 'website',
    'type' => 'blog',
    'body' => array(
        'query' => array(
            'match' => array(
                '_id' => 1,
           )
        )
    )
);
$rtn = $client->search($params);
echo '<pre>';
print_r($rtn);
echo '</pre>';
die('FILE:' . __FILE__ . '; LINE:' . __LINE__);

 

4:結果

 

 

官方文件:https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/_quickstart.html

瀏覽ES庫的外掛:head   訪問:http://192.168.1.100/_plugin/head

 


來源:http://www.cnblogs.com/amuge/p/6072162.html

相關文章