博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ElasticSearchDsl
阅读量:6758 次
发布时间:2019-06-26

本文共 526 字,大约阅读时间需要 1 分钟。

_____   _____ _       |  __ \ / ____| |      | |  | | (___ | |      | |  | |\___ \| |      | |__| |____) | |____  |_____/|_____/|______|

Source

build elasticsearch dsl

安装[Composer]

composer require xiaobeicn/elasticsearch-dsl

使用

use Xiaobeicn\ElasticSearchDsl\ElasticSearchDsl;$dslobj = new ElasticSearchDsl();$dslobj->select(['id', 'district', 'block', 'citycode'])        ->where(['district' => 1337])        ->orderby(['id' => 'desc'])        ->limit(2)        ->offset(1);$dsl = $dslobj->build();echo $dsl;

Doc

License

MIT

转载地址:http://xkzeo.baihongyu.com/

你可能感兴趣的文章
用javascript脚本实现微信定时发送信息
查看>>
MongoDB学习笔记(四) 用MongoDB的文档结构描述数据关系
查看>>
[Windows Azure] Data Management and Business Analytics
查看>>
java面试题07
查看>>
什么是面向对象思想
查看>>
Quick-cocos2d-x3.3 Study (十六)--------- 碰撞检测,事件监听,设置掩码
查看>>
tomcat 安装
查看>>
C#调用c++创建的dll
查看>>
12.02个人博客
查看>>
Notification通知代码简洁使用
查看>>
UIView 动画
查看>>
ssh加密公私钥
查看>>
快速部署Python应用:Nginx+uWSGI配置详解
查看>>
mybatis-generator生成数据对象
查看>>
java Queue中 add/offer,element/peek,remove/poll区别
查看>>
一个继承了抽象类的普通类的执行顺序
查看>>
Map集合中key不存在时使用toString()方法、valueOf()方法和强制转换((String))之间的区别...
查看>>
ArcIMS 开发学习笔记(一)
查看>>
leetcode_1095. Find in Mountain Array_[Binary Search]
查看>>
关于搭建haddoop分布式系统的全部过程复习
查看>>