翻譯進度
0% 已翻譯
更新時間:
2023年2月11日 上午10:28:00 [世界標準時間]
翻譯人員:
幫我們翻譯此頁

Laravel Scout

Introduction

Laravel Scout provides a simple, driver based solution for adding full-text search to your Eloquent models. Using model observers, Scout will automatically keep your search indexes in sync with your Eloquent records.

Currently, Scout ships with Algolia and MeiliSearch drivers. In addition, Scout includes a "collection" driver that is designed for local development usage and does not require any external dependencies or third-party services. Furthermore, writing custom drivers is simple and you are free to extend Scout with your own search implementations.

Installation

First, install Scout via the Composer package manager:

1composer require laravel/scout
1composer require laravel/scout

After installing Scout, you should publish the Scout configuration file using the vendor:publish Artisan command. This command will publish the scout.php configuration file to your application's config directory:

1php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"
1php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"

Finally, add the Laravel\Scout\Searchable trait to the model you would like to make searchable. This trait will register a model observer that will automatically keep the model in sync with your search driver:

1<?php
2 
3namespace App\Models;
4 
5use Illuminate\Database\Eloquent\Model;
6use Laravel\Scout\Searchable;
7 
8class Post extends Model
9{
10 use Searchable;
11}
1<?php
2 
3namespace App\Models;
4 
5use Illuminate\Database\Eloquent\Model;
6use Laravel\Scout\Searchable;
7 
8class Post extends Model
9{
10 use Searchable;
11}

Driver Prerequisites

Algolia

When using the Algolia driver, you should configure your Algolia id and secret credentials in your config/scout.php configuration file. Once your credentials have been configured, you will also need to install the Algolia PHP SDK via the Composer package manager:

1composer require algolia/algoliasearch-client-php
1composer require algolia/algoliasearch-client-php

MeiliSearch

MeiliSearch is a blazingly fast and open source search engine. If you aren't sure how to install MeiliSearch on your local machine, you may use Laravel Sail, Laravel's officially supported Docker development environment.

When using the MeiliSearch driver you will need to install the MeiliSearch PHP SDK via the Composer package manager:

1composer require meilisearch/meilisearch-php http-interop/http-factory-guzzle
1composer require meilisearch/meilisearch-php http-interop/http-factory-guzzle

Then, set the SCOUT_DRIVER environment variable as well as your MeiliSearch host and key credentials within your application's .env file:

1SCOUT_DRIVER=meilisearch
2MEILISEARCH_HOST=http://127.0.0.1:7700
3MEILISEARCH_KEY=masterKey
1SCOUT_DRIVER=meilisearch
2MEILISEARCH_HOST=http://127.0.0.1:7700
3MEILISEARCH_KEY=masterKey

For more information regarding MeiliSearch, please consult the MeiliSearch documentation.

In addition, you should ensure that you install a version of meilisearch/meilisearch-php that is compatible with your MeiliSearch binary version by reviewing MeiliSearch's documentation regarding binary compatibility.

exclamation

When upgrading Scout on an application that utilizes MeiliSearch, you should always review any additional breaking changes to the MeiliSearch service itself.

Queueing

While not strictly required to use Scout, you should strongly consider configuring a queue driver before using the library. Running a queue worker will allow Scout to queue all operations that sync your model information to your search indexes, providing much better response times for your application's web interface.

Once you have configured a queue driver, set the value of the queue option in your config/scout.php configuration file to true:

1'queue' => true,
1'queue' => true,

Configuration

Configuring Model Indexes

Each Eloquent model is synced with a given search "index", which contains all of the searchable records for that model. In other words, you can think of each index like a MySQL table. By default, each model will be persisted to an index matching the model's typical "table" name. Typically, this is the plural form of the model name; however, you are free to customize the model's index by overriding the searchableAs method on the model:

1<?php
2 
3namespace App\Models;
4 
5use Illuminate\Database\Eloquent\Model;
6use Laravel\Scout\Searchable;
7 
8class Post extends Model
9{
10 use Searchable;
11 
12 /**
13 * Get the name of the index associated with the model.
14 *
15 * @return string
16 */
17 public function searchableAs()
18 {
19 return 'posts_index';
20 }
21}
1<?php
2 
3namespace App\Models;
4 
5use Illuminate\Database\Eloquent\Model;
6use Laravel\Scout\Searchable;
7 
8class Post extends Model
9{
10 use Searchable;
11 
12 /**
13 * Get the name of the index associated with the model.
14 *
15 * @return string
16 */
17 public function searchableAs()
18 {
19 return 'posts_index';
20 }
21}

Configuring Searchable Data

By default, the entire toArray form of a given model will be persisted to its search index. If you would like to customize the data that is synchronized to the search index, you may override the toSearchableArray method on the model:

1<?php
2 
3namespace App\Models;
4 
5use Illuminate\Database\Eloquent\Model;
6use Laravel\Scout\Searchable;
7 
8class Post extends Model
9{
10 use Searchable;
11 
12 /**
13 * Get the indexable data array for the model.
14 *
15 * @return array
16 */
17 public function toSearchableArray()
18 {
19 $array = $this->toArray();
20 
21 // Customize the data array...
22 
23 return $array;
24 }
25}
1<?php
2 
3namespace App\Models;
4 
5use Illuminate\Database\Eloquent\Model;
6use Laravel\Scout\Searchable;
7 
8class Post extends Model
9{
10 use Searchable;
11 
12 /**
13 * Get the indexable data array for the model.
14 *
15 * @return array
16 */
17 public function toSearchableArray()
18 {
19 $array = $this->toArray();
20 
21 // Customize the data array...
22 
23 return $array;
24 }
25}

Configuring The Model ID

By default, Scout will use the primary key of the model as model's unique ID / key that is stored in the search index. If you need to customize this behavior, you may override the getScoutKey and the getScoutKeyName methods on the model:

1<?php
2 
3namespace App\Models;
4 
5use Illuminate\Database\Eloquent\Model;
6use Laravel\Scout\Searchable;
7 
8class User extends Model
9{
10 use Searchable;
11 
12 /**
13 * Get the value used to index the model.
14 *
15 * @return mixed
16 */
17 public function getScoutKey()
18 {
19 return $this->email;
20 }
21 
22 /**
23 * Get the key name used to index the model.
24 *
25 * @return mixed
26 */
27 public function getScoutKeyName()
28 {
29 return 'email';
30 }
31}
1<?php
2 
3namespace App\Models;
4 
5use Illuminate\Database\Eloquent\Model;
6use Laravel\Scout\Searchable;
7 
8class User extends Model
9{
10 use Searchable;
11 
12 /**
13 * Get the value used to index the model.
14 *
15 * @return mixed
16 */
17 public function getScoutKey()
18 {
19 return $this->email;
20 }
21 
22 /**
23 * Get the key name used to index the model.
24 *
25 * @return mixed
26 */
27 public function getScoutKeyName()
28 {
29 return 'email';
30 }
31}

Identifying Users

Scout also allows you to auto identify users when using Algolia. Associating the authenticated user with search operations may be helpful when viewing your search analytics within Algolia's dashboard. You can enable user identification by defining a SCOUT_IDENTIFY environment variable as true in your application's .env file:

1SCOUT_IDENTIFY=true
1SCOUT_IDENTIFY=true

Enabling this feature this will also pass the request's IP address and your authenticated user's primary identifier to Algolia so this data is associated with any search request that is made by the user.

Local Development

While you are free to use the Algolia or MeiliSearch search engines during local development, you may find it more convenient to get started with the "collection" engine. The collection engine will use "where" clauses and collection filtering on results from your existing database to determine the applicable search results for your query. When using this engine, it is not necessary to "index" your searchable models, as they will simply be retrieved from your local database.

To use the collection engine, you may simply set the value of the SCOUT_DRIVER environment variable to collection, or specify the collection driver directly in your application's scout configuration file:

1SCOUT_DRIVER=collection
1SCOUT_DRIVER=collection

Once you have specified the collection driver as your preferred driver, you may start executing search queries against your models. Search engine indexing, such as the indexing needed to seed Algolia or MeiliSearch indexes, is unnecessary when using the collection engine.

Indexing

Batch Import

If you are installing Scout into an existing project, you may already have database records you need to import into your indexes. Scout provides a scout:import Artisan command that you may use to import all of your existing records into your search indexes:

1php artisan scout:import "App\Models\Post"
1php artisan scout:import "App\Models\Post"

The flush command may be used to remove all of a model's records from your search indexes:

1php artisan scout:flush "App\Models\Post"
1php artisan scout:flush "App\Models\Post"

Modifying The Import Query

If you would like to modify the query that is used to retrieve all of your models for batch importing, you may define a makeAllSearchableUsing method on your model. This is a great place to add any eager relationship loading that may be necessary before importing your models:

1/**
2 * Modify the query used to retrieve models when making all of the models searchable.
3 *
4 * @param \Illuminate\Database\Eloquent\Builder $query
5 * @return \Illuminate\Database\Eloquent\Builder
6 */
7protected function makeAllSearchableUsing($query)
8{
9 return $query->with('author');
10}
1/**
2 * Modify the query used to retrieve models when making all of the models searchable.
3 *
4 * @param \Illuminate\Database\Eloquent\Builder $query
5 * @return \Illuminate\Database\Eloquent\Builder
6 */
7protected function makeAllSearchableUsing($query)
8{
9 return $query->with('author');
10}

Adding Records

Once you have added the Laravel\Scout\Searchable trait to a model, all you need to do is save or create a model instance and it will automatically be added to your search index. If you have configured Scout to use queues this operation will be performed in the background by your queue worker:

1use App\Models\Order;
2 
3$order = new Order;
4 
5// ...
6 
7$order->save();
1use App\Models\Order;
2 
3$order = new Order;
4 
5// ...
6 
7$order->save();

Adding Records Via Query

If you would like to add a collection of models to your search index via an Eloquent query, you may chain the searchable method onto the Eloquent query. The searchable method will chunk the results of the query and add the records to your search index. Again, if you have configured Scout to use queues, all of the chunks will be imported in the background by your queue workers:

1use App\Models\Order;
2 
3Order::where('price', '>', 100)->searchable();
1use App\Models\Order;
2 
3Order::where('price', '>', 100)->searchable();

You may also call the searchable method on an Eloquent relationship instance:

1$user->orders()->searchable();
1$user->orders()->searchable();

Or, if you already have a collection of Eloquent models in memory, you may call the searchable method on the collection instance to add the model instances to their corresponding index:

1$orders->searchable();
1$orders->searchable();
lightbulb

The searchable method can be considered an "upsert" operation. In other words, if the model record is already in your index, it will be updated. If it does not exist in the search index, it will be added to the index.

Updating Records

To update a searchable model, you only need to update the model instance's properties and save the model to your database. Scout will automatically persist the changes to your search index:

1use App\Models\Order;
2 
3$order = Order::find(1);
4 
5// Update the order...
6 
7$order->save();
1use App\Models\Order;
2 
3$order = Order::find(1);
4 
5// Update the order...
6 
7$order->save();

You may also invoke the searchable method on an Eloquent query instance to update a collection of models. If the models do not exist in your search index, they will be created:

1Order::where('price', '>', 100)->searchable();
1Order::where('price', '>', 100)->searchable();

If you would like to update the search index records for all of the models in a relationship, you may invoke the searchable on the relationship instance:

1$user->orders()->searchable();
1$user->orders()->searchable();

Or, if you already have a collection of Eloquent models in memory, you may call the searchable method on the collection instance to update the model instances in their corresponding index:

1$orders->searchable();
1$orders->searchable();

Removing Records

To remove a record from your index you may simply delete the model from the database. This may be done even if you are using soft deleted models:

1use App\Models\Order;
2 
3$order = Order::find(1);
4 
5$order->delete();
1use App\Models\Order;
2 
3$order = Order::find(1);
4 
5$order->delete();

If you do not want to retrieve the model before deleting the record, you may use the unsearchable method on an Eloquent query instance:

1Order::where('price', '>', 100)->unsearchable();
1Order::where('price', '>', 100)->unsearchable();

If you would like to remove the search index records for all of the models in a relationship, you may invoke the unsearchable on the relationship instance:

1$user->orders()->unsearchable();
1$user->orders()->unsearchable();

Or, if you already have a collection of Eloquent models in memory, you may call the unsearchable method on the collection instance to remove the model instances from their corresponding index:

1$orders->unsearchable();
1$orders->unsearchable();

Pausing Indexing

Sometimes you may need to perform a batch of Eloquent operations on a model without syncing the model data to your search index. You may do this using the withoutSyncingToSearch method. This method accepts a single closure which will be immediately executed. Any model operations that occur within the closure will not be synced to the model's index:

1use App\Models\Order;
2 
3Order::withoutSyncingToSearch(function () {
4 // Perform model actions...
5});
1use App\Models\Order;
2 
3Order::withoutSyncingToSearch(function () {
4 // Perform model actions...
5});

Conditionally Searchable Model Instances

Sometimes you may need to only make a model searchable under certain conditions. For example, imagine you have App\Models\Post model that may be in one of two states: "draft" and "published". You may only want to allow "published" posts to be searchable. To accomplish this, you may define a shouldBeSearchable method on your model:

1/**
2 * Determine if the model should be searchable.
3 *
4 * @return bool
5 */
6public function shouldBeSearchable()
7{
8 return $this->isPublished();
9}
1/**
2 * Determine if the model should be searchable.
3 *
4 * @return bool
5 */
6public function shouldBeSearchable()
7{
8 return $this->isPublished();
9}

The shouldBeSearchable method is only applied when manipulating models through the save and create methods, queries, or relationships. Directly making models or collections searchable using the searchable method will override the result of the shouldBeSearchable method.

Searching

You may begin searching a model using the search method. The search method accepts a single string that will be used to search your models. You should then chain the get method onto the search query to retrieve the Eloquent models that match the given search query:

1use App\Models\Order;
2 
3$orders = Order::search('Star Trek')->get();
1use App\Models\Order;
2 
3$orders = Order::search('Star Trek')->get();

Since Scout searches return a collection of Eloquent models, you may even return the results directly from a route or controller and they will automatically be converted to JSON:

1use App\Models\Order;
2use Illuminate\Http\Request;
3 
4Route::get('/search', function (Request $request) {
5 return Order::search($request->search)->get();
6});
1use App\Models\Order;
2use Illuminate\Http\Request;
3 
4Route::get('/search', function (Request $request) {
5 return Order::search($request->search)->get();
6});

If you would like to get the raw search results before they are converted to Eloquent models, you may use the raw method:

1$orders = Order::search('Star Trek')->raw();
1$orders = Order::search('Star Trek')->raw();

Custom Indexes

Search queries will typically be performed on the index specified by the model's searchableAs method. However, you may use the within method to specify a custom index that should be searched instead:

1$orders = Order::search('Star Trek')
2 ->within('tv_shows_popularity_desc')
3 ->get();
1$orders = Order::search('Star Trek')
2 ->within('tv_shows_popularity_desc')
3 ->get();

Where Clauses

Scout allows you to add simple "where" clauses to your search queries. Currently, these clauses only support basic numeric equality checks and are primarily useful for scoping search queries by an owner ID:

1use App\Models\Order;
2 
3$orders = Order::search('Star Trek')->where('user_id', 1)->get();
1use App\Models\Order;
2 
3$orders = Order::search('Star Trek')->where('user_id', 1)->get();

You may use the whereIn method to constrain results against a given set of values:

1$orders = Order::search('Star Trek')->whereIn(
2 'status', ['paid', 'open']
3)->get();
1$orders = Order::search('Star Trek')->whereIn(
2 'status', ['paid', 'open']
3)->get();

Since a search index is not a relational database, more advanced "where" clauses are not currently supported.

Pagination

In addition to retrieving a collection of models, you may paginate your search results using the paginate method. This method will return an Illuminate\Pagination\LengthAwarePaginator instance just as if you had paginated a traditional Eloquent query:

1use App\Models\Order;
2 
3$orders = Order::search('Star Trek')->paginate();
1use App\Models\Order;
2 
3$orders = Order::search('Star Trek')->paginate();

You may specify how many models to retrieve per page by passing the amount as the first argument to the paginate method:

1$orders = Order::search('Star Trek')->paginate(15);
1$orders = Order::search('Star Trek')->paginate(15);

Once you have retrieved the results, you may display the results and render the page links using Blade just as if you had paginated a traditional Eloquent query:

1<div class="container">
2 @foreach ($orders as $order)
3 {{ $order->price }}
4 @endforeach
5</div>
6 
7{{ $orders->links() }}
1<div class="container">
2 @foreach ($orders as $order)
3 {{ $order->price }}
4 @endforeach
5</div>
6 
7{{ $orders->links() }}

Of course, if you would like to retrieve the pagination results as JSON, you may return the paginator instance directly from a route or controller:

1use App\Models\Order;
2use Illuminate\Http\Request;
3 
4Route::get('/orders', function (Request $request) {
5 return Order::search($request->input('query'))->paginate(15);
6});
1use App\Models\Order;
2use Illuminate\Http\Request;
3 
4Route::get('/orders', function (Request $request) {
5 return Order::search($request->input('query'))->paginate(15);
6});

Soft Deleting

If your indexed models are soft deleting and you need to search your soft deleted models, set the soft_delete option of the config/scout.php configuration file to true:

1'soft_delete' => true,
1'soft_delete' => true,

When this configuration option is true, Scout will not remove soft deleted models from the search index. Instead, it will set a hidden __soft_deleted attribute on the indexed record. Then, you may use the withTrashed or onlyTrashed methods to retrieve the soft deleted records when searching:

1use App\Models\Order;
2 
3// Include trashed records when retrieving results...
4$orders = Order::search('Star Trek')->withTrashed()->get();
5 
6// Only include trashed records when retrieving results...
7$orders = Order::search('Star Trek')->onlyTrashed()->get();
1use App\Models\Order;
2 
3// Include trashed records when retrieving results...
4$orders = Order::search('Star Trek')->withTrashed()->get();
5 
6// Only include trashed records when retrieving results...
7$orders = Order::search('Star Trek')->onlyTrashed()->get();
lightbulb

When a soft deleted model is permanently deleted using forceDelete, Scout will remove it from the search index automatically.

Customizing Engine Searches

If you need to perform advanced customization of the search behavior of an engine you may pass a closure as the second argument to the search method. For example, you could use this callback to add geo-location data to your search options before the search query is passed to Algolia:

1use Algolia\AlgoliaSearch\SearchIndex;
2use App\Models\Order;
3 
4Order::search(
5 'Star Trek',
6 function (SearchIndex $algolia, string $query, array $options) {
7 $options['body']['query']['bool']['filter']['geo_distance'] = [
8 'distance' => '1000km',
9 'location' => ['lat' => 36, 'lon' => 111],
10 ];
11 
12 return $algolia->search($query, $options);
13 }
14)->get();
1use Algolia\AlgoliaSearch\SearchIndex;
2use App\Models\Order;
3 
4Order::search(
5 'Star Trek',
6 function (SearchIndex $algolia, string $query, array $options) {
7 $options['body']['query']['bool']['filter']['geo_distance'] = [
8 'distance' => '1000km',
9 'location' => ['lat' => 36, 'lon' => 111],
10 ];
11 
12 return $algolia->search($query, $options);
13 }
14)->get();

Custom Engines

Writing The Engine

If one of the built-in Scout search engines doesn't fit your needs, you may write your own custom engine and register it with Scout. Your engine should extend the Laravel\Scout\Engines\Engine abstract class. This abstract class contains eight methods your custom engine must implement:

1use Laravel\Scout\Builder;
2 
3abstract public function update($models);
4abstract public function delete($models);
5abstract public function search(Builder $builder);
6abstract public function paginate(Builder $builder, $perPage, $page);
7abstract public function mapIds($results);
8abstract public function map(Builder $builder, $results, $model);
9abstract public function getTotalCount($results);
10abstract public function flush($model);
1use Laravel\Scout\Builder;
2 
3abstract public function update($models);
4abstract public function delete($models);
5abstract public function search(Builder $builder);
6abstract public function paginate(Builder $builder, $perPage, $page);
7abstract public function mapIds($results);
8abstract public function map(Builder $builder, $results, $model);
9abstract public function getTotalCount($results);
10abstract public function flush($model);

You may find it helpful to review the implementations of these methods on the Laravel\Scout\Engines\AlgoliaEngine class. This class will provide you with a good starting point for learning how to implement each of these methods in your own engine.

Registering The Engine

Once you have written your custom engine, you may register it with Scout using the extend method of the Scout engine manager. Scout's engine manager may be resolved from the Laravel service container. You should call the extend method from the boot method of your App\Providers\AppServiceProvider class or any other service provider used by your application:

1use App\ScoutExtensions\MySqlSearchEngine
2use Laravel\Scout\EngineManager;
3 
4/**
5 * Bootstrap any application services.
6 *
7 * @return void
8 */
9public function boot()
10{
11 resolve(EngineManager::class)->extend('mysql', function () {
12 return new MySqlSearchEngine;
13 });
14}
1use App\ScoutExtensions\MySqlSearchEngine
2use Laravel\Scout\EngineManager;
3 
4/**
5 * Bootstrap any application services.
6 *
7 * @return void
8 */
9public function boot()
10{
11 resolve(EngineManager::class)->extend('mysql', function () {
12 return new MySqlSearchEngine;
13 });
14}

Once your engine has been registered, you may specify it as your default Scout driver in your application's config/scout.php configuration file:

1'driver' => 'mysql',
1'driver' => 'mysql',

Builder Macros

If you would like to define a custom Scout search builder method, you may use the macro method on the Laravel\Scout\Builder class. Typically, "macros" should be defined within a service provider's boot method:

1use Illuminate\Support\Facades\Response;
2use Illuminate\Support\ServiceProvider;
3use Laravel\Scout\Builder;
4 
5/**
6 * Bootstrap any application services.
7 *
8 * @return void
9 */
10public function boot()
11{
12 Builder::macro('count', function () {
13 return $this->engine()->getTotalCount(
14 $this->engine()->search($this)
15 );
16 });
17}
1use Illuminate\Support\Facades\Response;
2use Illuminate\Support\ServiceProvider;
3use Laravel\Scout\Builder;
4 
5/**
6 * Bootstrap any application services.
7 *
8 * @return void
9 */
10public function boot()
11{
12 Builder::macro('count', function () {
13 return $this->engine()->getTotalCount(
14 $this->engine()->search($this)
15 );
16 });
17}

The macro function accepts a macro name as its first argument and a closure as its second argument. The macro's closure will be executed when calling the macro name from a Laravel\Scout\Builder implementation:

1use App\Models\Order;
2 
3Order::search('Star Trek')->count();
1use App\Models\Order;
2 
3Order::search('Star Trek')->count();
翻譯進度
0% 已翻譯
更新時間:
2023年2月11日 上午10:28:00 [世界標準時間]
翻譯人員:
幫我們翻譯此頁

留言

尚無留言

“Laravel” is a Trademark of Taylor Otwell.
The source documentation is released under MIT license. See laravel/docs on GitHub for details.
The translated documentations are released under MIT license. See cornch/laravel-docs-l10n on GitHub for details.