Download the PHP package designmynight/laravel-elasticsearch without Composer
On this page you can find all versions of the php package designmynight/laravel-elasticsearch. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-elasticsearch
laravel-elasticsearch
Use Elasticsearch as a database in Laravel to retrieve Eloquent models and perform aggregations.
Build Elasticsearch queries as you're used to with Eloquent, and get Model instances in return, with some nice extras:
- Use
query
,filter
andpostFilter
query types - Perform geo searches
- Build and perform complex aggregations on your data
- Use the Elasticsearch scroll API to retrieve large numbers of results
Versions
Depending on your version of Elasticsearch you can use the following version of this package
Elasticsearch | Laravel Elasticsearch |
---|---|
>= 7.0, < 7.1 | 6 |
>= 6.6, < 7.0 | 5 |
>= 5.0, < 6.0 | 4 |
Setup
Add elasticsearch connection configuration to database.php
Create or update your base Model.php class to override newEloquentBuilder()
and newBaseQueryBuilder()
:
Search
You're now ready to carry out searches on your data. The query will look for an Elasticsearch index with the same name as the database table that your models reside in.
Aggregations
Aggregations can be added to a query with an approach that's similar to querying Elasticsearch directly, using nested functions rather than nested arrays. The aggregation()
method takes three or four arguments:
- A key to be used for the aggregation
- The type of aggregation, such as 'filter' or 'terms'
- (Optional) A callback or array providing options for the aggregation
- (Optional) A function allowing you to provide further sub-aggregations
Geo queries
You can filter search results by distance from a geo point or include only those results that fall within given bounds, passing arguments in the format you'd use if querying Elasticsearch directly.
Scroll API
You can use a scroll search to retrieve large numbers of results. Rather than returning a Collection, you'll get a PHP Generator function that you can iterate over, where each value is a Model for a single result from Elasticsearch.
Console
This package ships with the following commands to be used as utilities or as part of your deployment process.
Command | Arguments | Options | Description |
---|---|---|---|
make:mapping |
name : Name of the mapping. This name also determines the name of the index and the alias. |
--update : Whether the mapping should update an existing index. --template : Pass a pre-existing mapping filename to create your new mapping from. |
Creates a new mapping migration file. |
migrate:mappings |
index-command : (Optional) Name of your local Artisan console command that performs the Elasticsearch indexing. If not given, command will be retrieved from laravel-elasticsearch config file. |
--index : Automatically index new mapping.--swap : Automatically update the alias after the indexing has finished. |
Migrates your mapping files and begins to create the index. |
index:rollback |
Rollback to the previous index migration. | ||
index:remove |
index : (Optional) Name of the index to remove from your Elasticsearch cluster. |
Removes an index from your Elasticsearch cluster. | |
index:swap |
alias : Name of alias to update. index : Name of index to update alias to. old-index : (Optional) Name of old index. |
--remove-old-index : Remove old index from your Elasticsearch cluster. |
Swap the index your alias points to. |
index:list |
--alias : List active aliases. Pass "*" to view all. Other values filter the returned aliases. |
Display a list of all indexes in your Elasticsearch cluster. | |
index:copy |
from : index to copy from. to : the index to copy from |
Populate an index with all documents from another index |
Mappings and Aliases
When creating a new index during a migrate:mappings
the command will automatically create an alias based on the migration name by removing the date string. For example the migration 2018_08_03_095804_users.json
will create the alias users
.
During the first migration an index appears in the migrate:mappings
command will also switch the alias to the latest index mapping. The above will only happen when the alias does not already exist.
Future migrations will require you to use the --swap
option.
All versions of laravel-elasticsearch with dependencies
elasticsearch/elasticsearch Version ^5.2
laravel/framework Version ^6.0 | ^7.0 | ^8.0