分布式搜索引擎Elasticsearch PHP类封装 使用原生api

  1. //官方的 php  api写的鸡肋了,下面这个类可以使用 es api 操作.
  1. <?php
  2. class ElasticSearch {
  3. public $index;
  4. function __construct($server = 'http://localhost:9200'){
  5. $this->server = $server;
  6. }
  7. function call($path, $http = array()){
  8. if (!$this->index) throw new Exception('$this->index needs a value');
  9. return json_decode(file_get_contents($this->server . '/' . $this->index . '/' . $path, NULL, stream_context_create(array('http' => $http))));
  10. }
  11. //curl -X PUT http://localhost:9200/{INDEX}/
  12. function create(){
  13. $this->call(NULL, array('method' => 'PUT'));
  14. }
  15. //curl -X DELETE http://localhost:9200/{INDEX}/
  16. function drop(){
  17. $this->call(NULL, array('method' => 'DELETE'));
  18. }
  19. //curl -X GET http://localhost:9200/{INDEX}/_status
  20. function status(){
  21. return $this->call('_status');
  22. }
  23. //curl -X GET http://localhost:9200/{INDEX}/{TYPE}/_count -d {matchAll:{}}
  24. function count($type){
  25. return $this->call($type . '/_count', array('method' => 'GET', 'content' => '{ matchAll:{} }'));
  26. }
  27. //curl -X PUT http://localhost:9200/{INDEX}/{TYPE}/_mapping -d ...
  28. function map($type, $data){
  29. return $this->call($type . '/_mapping', array('method' => 'PUT', 'content' => $data));
  30. }
  31. //curl -X PUT http://localhost:9200/{INDEX}/{TYPE}/{ID} -d ...
  32. function add($type, $id, $data){
  33. return $this->call($type . '/' . $id, array('method' => 'PUT', 'content' => $data));
  34. }
  35. //curl -X GET http://localhost:9200/{INDEX}/{TYPE}/_search?q= ...
  36. function query($type, $q){
  37. return $this->call($type . '/_search?' . http_build_query(array('q' => $q)));
  38. }
  39. }
上一篇:Cordova 打包 Android release app 过程详解


下一篇:MVC 访问IFrame页面Session过期后跳转到登录页面