Download the PHP package thomasjsn/laravel-scout-elastic without Composer
On this page you can find all versions of the php package thomasjsn/laravel-scout-elastic. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download thomasjsn/laravel-scout-elastic
More information about thomasjsn/laravel-scout-elastic
Files in thomasjsn/laravel-scout-elastic
Package laravel-scout-elastic
Short Description Elastic Driver for Laravel Scout
License MIT
Homepage https://github.com/thomasjsn/laravel-scout-elastic
Informations about the package laravel-scout-elastic
Laravel Scout Elasticsearch Driver
This package provides an Elasticsearch driver for Laravel Scout.
Contents
- Installation
- Usage
- Credits
- License
Installation
You can install the package via composer:
You must add the Scout service provider and the package service provider in your app.php config:
Then you should publish the Elasticsearch configuration using the vendor:publish
Artisan command.
Setting up Elasticsearch configuration
You must have a Elasticsearch server up and running, indices can be created with an Artisan command; see below.
After you've published the Laravel Scout package configuration:
Usage
Creating Elasticsearch indexes with proper mapping
You may define custom mappings for Elasticsearch fields in the config. See examples in the config file.
If you prefer storing mappings in models, you may create a static public method mapping()
in each particular model:
And then use it in the config file:
The document type, in this example articles
must match searchableAs()
for the respective model.
Elasticsearch can set default types to model fields on the first insert if you do not explicitly define them. However; sometimes the defaults are not what you're looking for, or you need to define additional mapping properties.
In that case, we strongly recommend creating indices with proper mappings before inserting any data.
For that purpose, there is an Artisan command, called elastic:make-indices {index}
which creates an index based on
the settings in your configuration file.
To create all indices from your config just ignore the {index}
parameter and run:
If the index exists you will be asked if you want to delete and recreate it, or you can use the --force
flag.
To get information about your existing Elasticsearch indices you may want to use the following command:
Indexing data
You may follow instructions from the official Laravel Scout documentation to index your data.
Search
The package supports everything that is provided by Laravel Scout.
The Scout search
method used the default query method defined in the config file.
Sorting with orderBy()
method:
Elastic specific
However, to use the extra Elasticsearch features included in this package, use trait ElasticSearchable
by adding it to your model instead of Searchable
:
The package features:
1) The elasticSearch
method, elasticSearch($method, $query, array $params = null)
:
Parameters are taken from the configuration, for the specific query method, if not supplied. But you may override them.
2) A separate Elasticsearch index for each model.
If you have defined several indices in your config file,
you may choose which index a model belongs to by overriding searchableWithin()
method in your model:
If you do not override searchableWithin()
in your model, the first index from the config will be used.
Credits
- Erick Tamayo
- Thomas Jensen
- All Contributors
License
The MIT License (MIT).