All Projects → ongr-io → Elasticsearchdsl

ongr-io / Elasticsearchdsl

Licence: mit
Query DSL library for Elasticsearch

Programming Languages

dsl
153 projects

Projects that are alternatives of or similar to Elasticsearchdsl

Flexsearch
Next-Generation full text search library for Browser and Node.js
Stars: ✭ 8,108 (+2073.73%)
Mutual labels:  standalone, elasticsearch
Journalbeat
Journalbeat is a log shipper from systemd/journald to Logstash/Elasticsearch
Stars: ✭ 362 (-2.95%)
Mutual labels:  elasticsearch
Cryptotracker
A complete open source system for tracking and visualizing cryptocurrency price movements on leading exchanges
Stars: ✭ 336 (-9.92%)
Mutual labels:  elasticsearch
Elk Docker
Docker configuration for ELK monitoring stack with Curator and Beats data shippers support
Stars: ✭ 342 (-8.31%)
Mutual labels:  elasticsearch
Api.rss
RSS as RESTful. This service allows you to transform RSS feed into an awesome API.
Stars: ✭ 340 (-8.85%)
Mutual labels:  elasticsearch
Serverless Photo Recognition
A collection of 3 lambda functions that are invoked by Amazon S3 or Amazon API Gateway to analyze uploaded images with Amazon Rekognition and save picture labels to ElasticSearch (written in Kotlin)
Stars: ✭ 345 (-7.51%)
Mutual labels:  elasticsearch
Helm Monitor
Monitor K8S Helm release, rollback on metrics behavior (Prometheus, Elasticsearch, Sentry)
Stars: ✭ 332 (-10.99%)
Mutual labels:  elasticsearch
Elasticsearch
The missing elasticsearch ORM for Laravel, Lumen and Native php applications
Stars: ✭ 375 (+0.54%)
Mutual labels:  elasticsearch
Awesome Monitoring
INFRASTRUCTURE、OPERATION SYSTEM and APPLICATION monitoring tools for Operations.
Stars: ✭ 356 (-4.56%)
Mutual labels:  elasticsearch
Sigma
Generic Signature Format for SIEM Systems
Stars: ✭ 4,418 (+1084.45%)
Mutual labels:  elasticsearch
Elasticlinq
Use LINQ to query Elasticsearch with results as .NET objects
Stars: ✭ 341 (-8.58%)
Mutual labels:  elasticsearch
Kbn network
Network Plugin for Kibana
Stars: ✭ 339 (-9.12%)
Mutual labels:  elasticsearch
Xapiand
Xapiand: A RESTful Search Engine
Stars: ✭ 347 (-6.97%)
Mutual labels:  elasticsearch
Candy Api
GetCandy E-Commerce API
Stars: ✭ 339 (-9.12%)
Mutual labels:  elasticsearch
Flare
An analytical framework for network traffic and behavioral analytics
Stars: ✭ 363 (-2.68%)
Mutual labels:  elasticsearch
Elasticvue
Elasticsearch gui for the browser
Stars: ✭ 325 (-12.87%)
Mutual labels:  elasticsearch
Elasticsearch Java
Elasticsearch Java API 手册
Stars: ✭ 341 (-8.58%)
Mutual labels:  elasticsearch
Praeco
Elasticsearch alerting made simple.
Stars: ✭ 342 (-8.31%)
Mutual labels:  elasticsearch
Abc
Power of appbase.io via CLI, with nifty imports from your favorite data sources
Stars: ✭ 375 (+0.54%)
Mutual labels:  elasticsearch
Elastic Builder
A Node.js implementation of the elasticsearch Query DSL 👷
Stars: ✭ 367 (-1.61%)
Mutual labels:  elasticsearch

ElasticsearchDSL

Introducing Elasticsearch DSL library to provide objective query builder for Elasticsearch bundle and elasticsearch-php client. You can easily build any Elasticsearch query and transform it to an array.

If you need any help, stack overflow is the preferred and recommended way to ask ONGR support questions.

Build Status codecov Latest Stable Version Total Downloads Scrutinizer Code Quality

If you like this library, help me to develop it by buying a cup of coffee

Buy Me A Coffee

Version matrix

Elasticsearch version ElasticsearchDSL version
>= 7.0 >= 7.0
>= 6.0, < 7.0 >= 6.0
>= 5.0, < 6.0 >= 5.0
>= 2.0, < 5.0 >= 2.0 (not supported)
>= 1.0, < 2.0 1.x (not supported)
<= 0.90.x not supported

Documentation

The online documentation of the bundle is here

Try it!

Installation

Install library with composer:

$ composer require ongr/elasticsearch-dsl

elasticsearch-php client is defined in the composer requirements, no need to install it.

Search

Elasticsearch DSL was extracted from Elasticsearch Bundle to provide standalone query dsl for elasticsearch-php. Examples how to use it together with Elasticsearch Bundle can be found in the Elasticsearch Bundle docs.

If you dont want to use Symfony or Elasticsearch bundle, no worries, you can use it in any project together with elasticsearch-php. Here's the example:

If you are using Symfony there is also the ElasticsearchBundle which provides full integration with Elasticsearch DSL.

The library is standalone and is not coupled with any framework. You can use it in any PHP project, the only requirement is composer. Here's the example:

Create search:

 <?php
  require 'vendor/autoload.php'; //Composer autoload

  $client = ClientBuilder::create()->build(); //elasticsearch-php client
  
  $matchAll = new ONGR\ElasticsearchDSL\Query\MatchAllQuery();
  
  $search = new ONGR\ElasticsearchDSL\Search();
  $search->addQuery($matchAll);
  
  $params = [
    'index' => 'your_index',
    'body' => $search->toArray(),
  ];
  
  $results = $client->search($params);

Elasticsearch DSL covers every elasticsearch query, all examples can be found in the documentation

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].