**PHP扩展安装**
1\. 环境要求:PHP_VERSION >= 5.3.9,composer工具
2\. 在E盘新建文件夹命名为elastic,,拷贝composer.phar到
E:/elastic目录下面
3\. 打开命令行窗口,进入E:/elastic
4\. 在命令行运行:
php composer.phar require elasticsearch/elasticsearch
5\. 此时E:/elastic目录下会出现一个vendor目录,安装成功
6\. 使用方法:
require 'vendor/autoload.php';
$client = new Elasticsearch\Client();
**创建索引**
1. include('./vendor/autoload.php');
2. $elastic = new Elasticsearch\Client();
3. $index[‘index’] = ‘log’; //索引名称
4. $index[‘type’] = ‘ems_run_log’; //类型名称
5. $data[‘body’][‘settings’][‘number_of_shards’] = 5; //主分片数量
6. $data[‘body’][‘settings’][‘number_of_replicas’] = 0; //从分片数量
7. $elastic->indices()->create($index);
**插入索引数据**
1. include('./vendor/autoload.php');
2. $elastic = new Elasticsearch\Client();
3. $index[‘index’] = ‘log’; //索引名称
4. $index[‘type’] = ‘ems_run_log’; //类型名称
5. $index[‘id’] = 1 //不指定id,系统会自动生成唯一id
6. $index[‘body’] = array(
7. ‘mac’ => 'fcd5d900beca',
8. ‘customer_id’ => 3,
9. ‘product_id’ => 5,
10. ‘version’ => 2
11. );
12. $elastic->index($index);
**查询**
1. include('./vendor/autoload.php');
2. $elastic = new Elasticsearch\Client();
3. $index[‘index’] = ‘log’; //索引名称
4. $index[‘type’] = ‘ems_run_log’; //类型名称
5. $index[‘body’][‘query’][‘match’][‘mac’] = ‘fcd5d900beca’;
6. $index[‘size’] = 10;
7. $index[‘from’] = 200;
8. $elastic->search($index);
相当于sql语句:
select*from ems_run_log where mac=‘fcd5d900beca’ limit 200,10;
1. include('./vendor/autoload.php');
2. $elastic = new Elasticsearch\Client();
3. $index[‘index’] = ‘log’; //索引名称
4. $index[‘type’] = ‘ems_run_log’; //类型名称
5. $index[‘body’][‘query’][‘bool’][‘must’] = array(
6. array(‘match’ => array(‘mac’ => ‘fcd5d900beca’)),
7. array(‘match’ => array(‘product_id’ => 20))
8. );
9. $index[‘size’] = 10;
10. $index[‘from’] = 200;
11. $elastic->search($index);
相当于sql语句:
select*from ems_run_log where mac=‘fcd5d900beca’ and product_id = 20 limit 200,10;
1. include('./vendor/autoload.php');
2. $elastic = new Elasticsearch\Client();
3. $index[‘index’] = ‘log’; //索引名称
4. $index[‘type’] = ‘ems_run_log’; //类型名称
5. $index[‘body’][‘query’][‘bool’][‘should’] = array(
6. array(‘match’ => array(‘mac’ => ‘fcd5d900beca’)),
7. array(‘match’ => array(‘product_id’ => 20))
8. );
9. $index[‘size’] = 10;
10. $index[‘from’] = 200;
11. $elastic->search($index);
当于sql语句:
select*from ems_run_log where mac=‘fcd5d900beca’ or product_id = 20 limit 200,10;
1. include('./vendor/autoload.php');
2. $elastic = new Elasticsearch\Client();
3. $index[‘index’] = ‘log’; //索引名称
4. $index[‘type’] = ‘ems_run_log’; //类型名称
5. $index[‘body’][‘query’][‘bool’][‘must_not’] = array(
6. array(‘match’ => array(‘mac’ => ‘fcd5d900beca’)),
7. array(‘match’ => array(‘product_id’ => 20))
8. );
9. $index[‘size’] = 10;
10. $index[‘from’] = 200;
11. $elastic->search($index);
相当于sql语句:
select*from ems_run_log where mac!=‘fcd5d900beca’ and product_id != 20 limit 200,10;
1. include('./vendor/autoload.php');
2. $elastic = new Elasticsearch\Client();
3. $index[‘index’] = ‘log’; //索引名称
4. $index[‘type’] = ‘ems_run_log’; //类型名称
5. $index[‘body’][‘query’][‘range’] = array(
6. ‘id’ => array(‘gte’ => 20,’lt’ => 30);
7. );
8. $index[‘size’] = 10;
9. $index[‘from’] = 200;
10. $elastic->search($index);
相当于sql语句:
select*from ems_run_log where id>=20 and id<30 limit 200,10;
**删除文档**
1. <pre name="code" class="php">include('./vendor/autoload.php');
2. $elastic = new Elasticsearch\Client();
3. $index['index'] = 'test'; //索引名称
4. $index['type'] = 'ems_test'; //类型名称
5. $index['id'] = 2;
6. $elastic->delete($index);
- 技能知识点
- 对死锁问题的理解
- 文件系统原理:如何用1分钟遍历一个100TB的文件?
- 数据库原理:为什么PrepareStatement性能更好更安全?
- Java Web程序的运行时环境到底是怎样的?
- 你真的知道自己要解决的问题是什么吗?
- 如何解决问题
- 经验分享
- GIT的HTTP方式免密pull、push
- 使用xhprof对php7程序进行性能分析
- 微信扫码登录和使用公众号方式进行扫码登录
- 关于curl跳转抓取
- Linux 下配置 Git 操作免登录 ssh 公钥
- Linux Memcached 安装
- php7安装3.4版本的phalcon扩展
- centos7下php7.0.x安装phalcon框架
- 将字符串按照指定长度分割
- 搜索html源码中标签包的纯文本
- 更换composer镜像源为阿里云
- mac 隐藏文件显示/隐藏
- 谷歌(google)世界各国网址大全
- 实战文档
- PHP7安装intl扩展和linux安装icu
- linux编译安装时常见错误解决办法
- linux删除文件后不释放磁盘空间解决方法
- PHP开启异步多线程执行脚本
- file_exists(): open_basedir restriction in effect. File完美解决方案
- PHP 7.1 安装 ssh2 扩展,用于PHP进行ssh连接
- php命令行加载的php.ini
- linux文件实时同步
- linux下php的psr.so扩展源码安装
- php将字符串中的\n变成真正的换行符?
- PHP7 下安装 memcache 和 memcached 扩展
- PHP 高级面试题 - 如果没有 mb 系列函数,如何切割多字节字符串
- PHP设置脚本最大执行时间的三种方法
- 升级Php 7.4带来的两个大坑
- 不同域名的iframe下,fckeditor在chrome下的SecurityError,解决办法~~
- Linux find+rm -rf 执行组合删除
- 从零搭建Prometheus监控报警系统
- Bug之group_concat默认长度限制
- PHP生成的XML显示无效的Char值27消息(PHP generated XML shows invalid Char value 27 message)
- XML 解析中,如何排除控制字符
- PHP各种时间获取
- nginx配置移动自适应跳转
- 已安装nginx动态添加模块
- auto_prepend_file与auto_append_file使用方法
- 利用nginx实现web页面插入统计代码
- Nginx中的rewrite指令(break,last,redirect,permanent)
- nginx 中 index try_files location 这三个配置项的作用
- linux安装git服务器
- PHP 中运用 elasticsearch
- PHP解析Mysql Binlog
- 好用的PHP学习网(持续更新中)
- 一篇写给准备升级PHP7的小伙伴的文章
- linux 安装php7 -系统centos7
- Linux 下多php 版本共存安装
- PHP编译安装时常见错误解决办法,php编译常见错误
- nginx upstream模块--负载均衡
- 如何解决Tomcat服务器打开不了HOST Manager的问题
- PHP的内存泄露问题与垃圾回收
- Redis数据结构 - string字符串
- PHP开发api接口安全验证
- 服务接口API限流 Rate Limit
- php内核分析---内存管理(一)
- PHP内存泄漏问题解析
- 【代码片-1】 MongoDB与PHP -- 高级查询
- 【代码片-1】 php7 mongoDB 简单封装
- php与mysql系统中出现大量数据库sleep的空连接问题分析
- 解决crond引发大量sendmail、postdrop进程问题
- PHP操作MongoDB GridFS 存储文件,如图片文件
- 浅谈php安全
- linux上keepalived+nginx实现高可用web负载均衡
- 整理php防注入和XSS攻击通用过滤