Package Data | |
---|---|
Maintainer Username: | jhmilan |
Maintainer Contact: | jhmilan@gmail.com (Jose H. Milán) |
Package Create Date: | 2017-03-07 |
Package Last Update: | 2017-03-07 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:02:36 |
Package Statistics | |
---|---|
Total Downloads: | 12 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
An ElasticSearch Custom Engine implementation for Laravel Scout (3.*)
IMPORTANT this is still an experimental package!!!
Install the package via composer:
composer require bittenbyte/laravel-scout-elasticsearch
Add the service provider to the providers section in the config/app.php (of course you need Scout too)
...
BittenByte\ScoutElasticsearchEngine\ScoutElasticsearchEngineServiceProvider::class,
...
In the config/scout.php set the driver properly and add a key as per below:
...
'driver' => 'elasticsearch',
...
'elasticsearch' => [
'config' => [
'hosts' => array_map('trim', explode(',', env('ELASTICSEARCH_HOSTS', 'localhost'))),
],
//default searchable fields per index
'fields' => [
'users_index' => [
'name', 'email', 'role', 'slug',
],
],
'indices' => [
//set your OPTIONAL index specific settings and mappings
'users_index' => [
'settings' => [
'number_of_shards' => 3,
'number_of_replicas' => 2
],
'mappings' => [
'authenticable' => [
'_source' => [
'enabled' => true,
],
'properties' => [
'name' => [
'type' => 'string',
'index' => 'not_analyzed',
],
'slug' => [
'type' => 'string',
'index' => 'not_analyzed',
],
'role' => [
'type' => 'string',
'index' => 'not_analyzed',
],
'email' => [
'type' => 'string',
'index' => 'not_analyzed',
],
],
],
],
],
],
],
Follow this documentation below and the official docs for scout
Advanced/Custom query builder
Not to forget from Scout docs
indexation is automaticaly hooked to Eloquent create, update and (soft)delete operations
Also is possible to index/remove from index manually
// Updating via Eloquent query...
App\Order::where('price', '>', 100)->searchable();
// You may also update via relationships...
$user->orders()->searchable();
// You may also update via collections...
$orders->searchable();
// Removing via Eloquent query...
App\Order::where('price', '>', 100)->unsearchable();
// You may also remove via relationships...
$user->orders()->unsearchable();
// You may also remove via collections...
$orders->unsearchable();
This is useful specially when doing batch operations
App\Order::withoutSyncingToSearch(function () {
// Perform model actions...
});
$orders = App\Order::search('Star Trek')->get();
$orders = App\Order::search('Star Trek')->where('user_id', 1)->get();
$orders = App\Order::search('Star Trek')->paginate();