hamdallah90 / elasticsearch
Laravel 缺失的 elasticsearch ORM!
Requires
- php: >=8.1
- ext-json: *
- elasticsearch/elasticsearch: ^8.5
- illuminate/pagination: *
- illuminate/support: *
- monolog/monolog: *
- symfony/var-dumper: *
Requires (Dev)
- illuminate/contracts: ^9.5
- illuminate/database: ^9.5
- jetbrains/phpstorm-attributes: ^1.0
- laravel/lumen-framework: ^9.0
- laravel/scout: ^10.0
- orchestra/testbench: ^7.2
- phpunit/phpunit: ^9.5
- vimeo/psalm: ^5.0
Replaces
This package is auto-updated.
Last update: 2024-09-07 03:28:50 UTC
README
Laravel Elasticsearch 集成
这是由 @basemkhirat 开发的一个优秀库的分支,遗憾的是,他似乎已经放弃了它。
由于我们非常依赖这个库,我们将努力保持其更新并与新的 Laravel 和 Elasticsearch 版本兼容。
本分支的变更
- 支持 Elasticsearch 7.10 及以上版本
- 支持 PHP 8.0 及以上版本(查看 v2 版本以获取对 PHP 7 的支持)
- 扩展了对 Laravel 库的支持,允许您几乎与所有版本的 Laravel 一起使用
- 所有支持位置的类型提示,对所有参数都有信心
- 高级自动补全的 Docblock 注释,丰富的内联文档
- 将连接管理干净地分离到
ConnectionManager
类 中,同时保留向后兼容性 - 支持 大多数 Eloquent 模型行为(见下文)
- 删除了对 Laravel 内部依赖的依赖
如果您有兴趣贡献,请提交一个 PR 或打开一个问题!
功能
- 具有优雅语法的流畅 Elasticsearch 查询构建器
- 受 Laravel Eloquent 启发的 Elasticsearch 模型
- 使用简单的 artisan 命令进行索引管理
- 有限支持 Lumen 框架
- 可作为 Laravel Scout 驱动程序使用
- 并行使用多个 Elasticsearch 连接
- 基于 Laravel Pagination 的内置分页
- 使用基于 laravel cache 的缓存层进行查询缓存
目录
- 要求
- 安装
- 配置(Laravel & Lumen)
- Artisan 命令(Laravel & Lumen)
- 作为 Laravel Scout 驱动程序使用
- Elasticsearch 模型
- 作为查询构建器的使用
- 版本
- 作者
- 错误、建议和贡献
- 许可
要求
- PHP >=
8.0
查看 Travis CI 构建。 laravel/laravel
>= 5.* 或laravel/lumen
>= 5.* 或任何其他使用 composer 的应用程序
安装
本节描述了所有支持的应用类型安装过程。
使用 composer 安装包
无论您使用Laravel、Lumen还是其他框架,请首先使用composer安装包
composer require matchory/elasticsearch
Laravel 安装
如果您已禁用包自动发现,请将服务提供者和外观添加到您的config/app.php
'providers' => [ // ... Matchory\Elasticsearch\ElasticsearchServiceProvider::class, // ... ], // ... 'aliases' => [ // ... 'ES' => Matchory\Elasticsearch\Facades\ES::class, // ... ],
最后,将服务提供者发布到您的配置目录
php artisan vendor:publish --provider="Matchory\Elasticsearch\ElasticsearchServiceProvider"
Lumen 安装
从composer安装包后,将包服务提供者添加到bootstrap/app.php
$app->register(Matchory\Elasticsearch\ElasticsearchServiceProvider::class);
将包配置目录vendor/matchory/elasticsearch/src/config/
复制到您的项目根目录,与您的app/
目录并列
cp -r ./vendor/matchory/elasticsearch/src/config ./config
如果您尚未这样做,请通过在bootstrap/app.php
中取消注释该行来使Lumen与外观一起工作
$app->withFacades();
如果您不想在Lumen中启用外观,可以使用app("es")
访问查询构建器
app("es")->index("my_index")->get(); # This is similar to: ES::index("my_index")->get();
通用应用安装
您可以使用任何基于composer的应用安装包。虽然我们无法提供通用说明,但以下示例应能给您一个了解其工作方式的思路
require "vendor/autoload.php"; use Matchory\Elasticsearch\ConnectionManager; use Matchory\Elasticsearch\Factories\ClientFactory; $connectionManager = new ConnectionManager([ 'servers' => [ [ "host" => '127.0.0.1', "port" => 9200, 'user' => '', 'pass' => '', 'scheme' => 'http', ], ], // Custom handlers // 'handler' => new MyCustomHandler(), 'index' => 'my_index', ], new ClientFactory()); $connection = $connectionManager->connection(); // Access the query builder using created connection $documents = $connection->search("hello")->get();
配置(Laravel & Lumen)
发布服务提供者后,已在config/es.php
创建了配置文件。在此,您可以添加一个或多个Elasticsearch连接,每个连接有多个服务器。请参考以下示例
# Here you can define the default connection name. 'default' => env('ELASTIC_CONNECTION', 'default'), # Here you can define your connections. 'connections' => [ 'default' => [ 'servers' => [ [ "host" => env("ELASTIC_HOST", "127.0.0.1"), "port" => env("ELASTIC_PORT", 9200), 'user' => env('ELASTIC_USER', ''), 'pass' => env('ELASTIC_PASS', ''), 'scheme' => env('ELASTIC_SCHEME', 'http'), ] ], // Custom handlers // 'handler' => new MyCustomHandler(), 'index' => env('ELASTIC_INDEX', 'my_index') ] ], # Here you can define your indices. 'indices' => [ 'my_index_1' => [ "aliases" => [ "my_index" ], 'settings' => [ "number_of_shards" => 1, "number_of_replicas" => 0, ], 'mappings' => [ 'posts' => [ 'properties' => [ 'title' => [ 'type' => 'string' ] ] ] ] ] ]
如果您想使用Elasticsearch与Laravel Scout,您可以在config/scout.php
中找到scout特定设置。
Artisan 命令(Laravel & Lumen)
本包包含的Artisan命令可以创建或更新设置、映射和别名。请注意,所有命令默认使用默认连接。您可以通过传递--connection <your_connection_name>
选项来更改此设置。
以下命令可用
es:indices:list
:列出服务器上的所有索引
$ php artisan es:indices:list
+----------------------+--------+--------+----------+------------------------+-----+-----+------------+--------------+------------+----------------+
| configured (es.php) | health | status | index | uuid | pri | rep | docs.count | docs.deleted | store.size | pri.store.size |
+----------------------+--------+--------+----------+------------------------+-----+-----+------------+--------------+------------+----------------+
| yes | green | open | my_index | 5URW60KJQNionAJgL6Q2TQ | 1 | 0 | 0 | 0 | 260b | 260b |
+----------------------+--------+--------+----------+------------------------+-----+-----+------------+--------------+------------+----------------+
es:indices:create
:根据 config/es.php
中的定义创建索引
请注意,创建操作会跳过已存在的索引。
# Create all indices in config file. php artisan es:indices:create # Create only 'my_index' index in config file php artisan es:indices:create my_index
es:indices:update
:根据 config/es.php
中的定义更新索引
请注意,更新操作更新索引设置、别名和映射,但不删除索引数据。
# Update all indices in config file. php artisan es:indices:update # Update only 'my_index' index in config file php artisan es:indices:update my_index
es:indices:drop
:删除索引
在使用此命令时请小心,因为您将丢失索引数据!
使用带有--force
选项的drop命令将跳过所有确认消息。
# Drop all indices in config file. php artisan es:indices:drop # Drop specific index on sever. Not matter for index to be exist in config file or not. php artisan es:indices:drop my_index
数据重新索引(零停机时间)
首先,为什么需要重新索引?
更改索引映射不进行数据重新索引不会反映出来,否则您的搜索结果将无法正常工作。
为了避免停机时间,您的应用程序应使用索引别名
而不是索引名称
。
索引别名
是应用程序应工作的常量名称,以避免更改索引名称。
假设我们想更改my_index
的映射,这是如何做的
-
将
别名
作为示例my_index_alias
添加到my_index
配置中,并确保您的应用程序正在使用它。"aliases" => [ "my_index_alias" ]
-
使用命令更新索引
php artisan es:indices:update my_index
-
创建一个新的索引作为示例
my_new_index
,并在配置文件中包含您的新映射。$ php artisan es:indices:create my_new_index
-
使用命令将数据从
my_index
重新索引到my_new_index
php artisan es:indices:reindex my_index my_new_index # Control bulk size. Adjust it with your server. php artisan es:indices:reindex my_index my_new_index --bulk-size=2000 # Control query scroll value. php artisan es:indices:reindex my_index my_new_index --bulk-size=2000 --scroll=2m # Skip reindexing errors such as mapper parsing exceptions. php artisan es:indices:reindex my_index my_new_index --bulk-size=2000 --skip-errors # Hide all reindexing errors and show the progres bar only. php artisan es:indices:reindex my_index my_new_index --bulk-size=2000 --skip-errors --hide-errors
-
从配置文件中删除
my_index_alias
别名并将其添加到my_new_index
中,然后使用命令更新php artisan es:indices:update
作为 Laravel Scout 驱动程序使用
首先,遵循Laravel Scout安装。
您只需更新config/scout.php
中的以下行即可
# change the default driver to 'es' 'driver' => env('SCOUT_DRIVER', 'es'), # link `es` driver with default elasticsearch connection in config/es.php 'es' => [ 'connection' => env('ELASTIC_CONNECTION', 'default'), ],
也请参阅Laravel Scout文档!
Elasticsearch 模型
每个索引都有一个相应的"模型",用于与该索引交互。模型允许您查询索引中的数据,以及将新文档插入索引。Elasticsearch模型尽可能模仿Eloquent模型:您可以使用模型事件、路由绑定、高级属性方法等。 如果您缺少任何Eloquent功能,请提交问题,我们将很高兴添加它!。
支持的功能
- 属性
- 事件
- 路由绑定
- 全局和局部查询作用域
- 复制模型
一个最小的模型可能看起来像这样
namespace App\Models; use Matchory\Elasticsearch\Model; class Post extends Model { // ... }
索引名称
此模型并非绑定到任何索引,它将直接使用为给定的Elasticsearch连接配置的索引。要针对特定索引进行操作,您可以在模型上定义一个index
属性
namespace App\Models; use Matchory\Elasticsearch\Model; class Post extends Model { protected $index = 'posts'; }
连接名称
默认情况下,所有Elasticsearch模型都将使用为您的应用程序配置的默认连接。如果您希望在交互特定模型时使用不同的连接,应在模型上定义一个$connection属性
namespace App\Models; use Matchory\Elasticsearch\Model; class Post extends Model { protected $connection = 'blag'; }
默认属性值
默认情况下,新实例化的模型实例不包含任何属性值。如果您希望定义模型某些属性的一些默认值,可以在模型上定义一个attributes
属性
namespace App\Models; use Matchory\Elasticsearch\Model; class Post extends Model { protected $attributes = [ 'published' => false, ]; }
检索模型
一旦创建了模型及其关联的索引,就可以开始从中检索数据。您可以认为Elasticsearch模型是一个强大的查询构建器,允许您流畅地查询与模型关联的索引。模型的all
方法将检索模型关联的Elasticsearch索引中的所有文档
use App\Models\Post; foreach (Post::all() as $post) { echo $post->title; }
添加额外约束
all
方法将返回模型索引中的所有结果。然而,由于每个Elasticsearch模型都作为查询构建器,您可以在查询中添加额外的约束,然后调用get()
方法来检索结果
use App\Models\Post; $posts = Post::where('status', 1) ->orderBy('created_at', 'desc') ->take(10) ->get();
集合
如我们所见,Elasticsearch方法如all
和get
从索引中检索多个文档。然而,这些方法并不返回一个普通的PHP数组。相反,返回一个Matchory\Elasticsearch\Collection
实例。
Elasticsearch的Collection
类扩展了Laravel的基础Illuminate\Support\Collection
类,它提供了一系列用于与数据集合交互的有用方法。例如,可以使用reject
方法根据调用闭包的结果从集合中删除模型
use App\Models\Post; $posts = Post::where('sponsored', true)->get(); $posts = $posts->reject($post => $post->in_review);
除了Laravel基础集合类提供的方法之外,Elasticsearch集合类还提供了一些特定于与Elasticsearch模型集合交互的额外方法
结果元数据
Elasticsearch除了查询的命中结果外,还提供了一些额外的字段,如总结果数量或查询执行时间。Elasticsearch集合提供了这些属性的getter方法
use App\Models\Post; $posts = Post::all(); $total = $posts->getTotal(); $maxScore = $posts->getMaxScore(); $duration = $posts->getDuration(); $isTimedOut = $posts->isTimedOut(); $scrollId = $posts->getScrollId(); $shards = $posts->getShards();
迭代
由于Laravel的所有集合都实现了PHP的iterable
接口,您可以像数组一样遍历集合
foreach ($title as $title) { echo $post->title; }
分块结果
Elasticsearch索引可能会变得非常大。如果您的应用程序尝试通过all
或get
方法加载成千上万的Elasticsearch文档而没有设置上限,可能会导致内存不足。因此,默认检索的文档数量设置为10
。要更改此设置,请使用take
方法
use App\Models\Post; $posts = Post::take(500)->get();
检索单个模型
除了检索匹配给定查询的所有文档外,您还可以使用find
、first
或firstWhere
方法检索单个文档。与返回模型集合的方法不同,这些方法返回单个模型实例
use App\Models\Post; // Retrieve a model by its ID... $posts = Post::find('AVp_tCaAoV7YQD3Esfmp'); // Retrieve the first model matching the query constraints... $post = Post::where('published', 1)->first(); // Alternative to retrieving the first model matching the query constraints... $post = Post::firstWhere('published', 1);```
有时您可能希望检索查询的第一个结果或在找不到结果时执行某些操作。firstOr
方法将返回与查询匹配的第一个结果,如果未找到结果,则执行给定的闭包。闭包返回的值将被认为是firstOr
方法的返回结果
use App\Models\Post; $model = Post::where('tags', '>', 3)->firstOr(function () { // ... });
未找到异常
有时您可能希望在找不到模型时抛出异常。这在路由或控制器中尤其有用。findOrFail
和firstOrFail
方法将检索查询的第一个结果;然而,如果未找到结果,将抛出一个Matchory\Elasticsearch\Exceptions\DocumentNotFoundException
异常
$post = Post::findOrFail('AVp_tCaAoV7YQD3Esfmp'); $post = Post::where('published', true)->firstOrFail();
如果未捕获到 DocumentNotFoundException
,则会自动向客户端发送404 HTTP响应
use App\Models\Post; Route::get('/api/posts/{id}', function ($id) { return Post::findOrFail($id); });
插入和更新模型
插入
要将新文档插入索引,您应该实例化一个新的模型实例并设置模型上的属性。然后,在模型实例上调用 save
方法
namespace App\Http\Controllers; use App\Models\Post; use Illuminate\Http\Request; use Illuminate\Http\Response; use App\Http\Controllers\Controller; class PostController extends Controller { /** * Create a new post instance. * * @param Request $request * @return Response */ public function store(Request $request): Response { // Validate the request... $post = new Post; $post->title = $request->title; $post->save(); } }
在这个例子中,我们将传入的HTTP请求中的 name
字段分配给 App\Models\Post
模型实例的 name
属性。当我们调用 save
方法时,文档将插入到索引中。
或者,您可以使用 create
方法使用单个PHP语句“保存”新模型。插入的模型实例将由 create
方法返回给您
use App\Models\Post; $post = Post::create([ 'title' => 'Searching efficiently', ]);
但是,在使用 create
方法之前,您需要在您的模型类中指定 fillable
或 guarded
属性。这些属性是必需的,因为默认情况下,所有Elasticsearch模型都受到质量分配漏洞的保护。有关质量分配的更多信息,请参阅质量分配文档。
更新
您还可以使用 save
方法来更新索引中已经存在的模型。要更新模型,您应该检索它并设置您想要更新的任何属性。然后,您应该调用模型上的 save
方法。
您可以使用 save()
方法来更新已经存在的模型。要更新模型,您应该检索它,设置您想要更新的任何属性,然后调用保存方法。
use App\Models\Post; $post = Post::find('AVp_tCaAoV7YQD3Esfmp'); $post->title = 'Modified Post Title'; $post->save();
检查属性更改
Elasticsearch提供了 isDirty
、isClean
和 wasChanged
方法来检查模型的内部状态,并确定其属性从最初检索以来是如何变化的。
isDirty
方法确定自模型检索以来模型是否有任何属性被更改。您可以将特定的属性名称传递给 isDirty
方法以确定特定属性是否为 脏。 isClean
将确定属性自模型检索以来是否保持不变。此方法也接受一个可选的属性参数
use App\Models\Author; $author = Author::create([ 'first_name' => 'Moritz', 'last_name' => 'Friedrich', 'title' => 'Developer', ]); $author->title = 'Painter'; $author->isDirty(); // true $author->isDirty('title'); // true $author->isDirty('first_name'); // false $author->isClean(); // false $author->isClean('title'); // false $author->isClean('first_name'); // true $author->save(); $author->isDirty(); // false $author->isClean(); // true
wasChanged
方法确定在当前请求周期中最后保存模型时是否有任何属性被更改。如果需要,您可以通过传递属性名称来查看特定属性是否被更改
use App\Models\Author; $author = Author::create([ 'first_name' => 'Taylor', 'last_name' => 'Otwell', 'title' => 'Developer', ]); $author->title = 'Painter'; $author->save(); $author->wasChanged(); // true $author->wasChanged('title'); // true $author->wasChanged('first_name'); // false
getOriginal
方法返回一个数组,包含自模型检索以来无论任何更改的模型原始属性。如果需要,您可以通过传递特定的属性名称来获取特定属性的原始值
use App\Models\Author; $author = Author::find(1); $author->name; // John $author->email; // john@example.com $author->name = "Jack"; $author->name; // Jack $author->getOriginal('name'); // John $author->getOriginal(); // Array of original attributes...
批量赋值
您可以使用 create
方法使用单个PHP语句“保存”新模型。方法将返回插入的模型实例
use App\Models\Post; $post = Post::create([ 'title' => 'Searching effectively', ]);
但是,在使用 create
方法之前,您需要在您的模型类中指定 fillable
或 guarded
属性。这些属性是必需的,因为默认情况下,所有Elasticsearch模型都受到质量分配漏洞的保护。
质量分配漏洞发生在用户传递一个意外的HTTP请求字段,并且该字段更改了您未预期的索引中的字段。
因此,为了开始,您应该定义您想要使质量分配可用的模型属性。您可以通过在模型上使用 fillable
属性来完成此操作。例如,让我们使我们的 Post
模型的 title
属性可进行质量分配
namespace App\Models; use Matchory\Elasticsearch\Model; class Post extends Model { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = ['title']; }
一旦您已指定哪些属性是质量分配的,您就可以使用 create
方法在索引中插入新文档。 create
方法返回新创建的模型实例
$post = Post::create(['title' => 'Searching effectively']);
如果您已经有一个模型实例,您可以使用 fill
方法用属性数组填充它
$post->fill(['title' => 'Searching more effectively']);
允许批量赋值
如果您想使所有属性都可被赋值,您可以定义模型中的guarded
属性为一个空数组。如果您选择取消保护模型,应特别注意始终手动构建传递给Elasticsearch的fill
、create
和update
方法的数组。
/** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = [];
Upserts
目前还没有用于上载文档(根据模型是否存在插入或更新)的便捷包装器。如果您对此类功能感兴趣,请提交一个issue。
删除模型
要删除模型,请在模型实例上调用delete
方法。
use App\Models\Post; $post = Post::find('AVp_tCaAoV7YQD3Esfmp'); $post->delete();
通过 ID 删除现有模型
在上面的例子中,我们在调用delete
方法之前从索引中检索了模型。但是,如果您知道模型的ID,您可以调用destroy
方法而不必显式检索它。除了接受单个ID外,destroy
方法还可以接受多个ID、ID数组或ID集合。
use App\Models\Post; Post::destroy(1); Post::destroy(1, 2, 3); Post::destroy([1, 2, 3]); Post::destroy(collect([1, 2, 3]));
重要
destroy
方法将单独加载每个模型并调用delete
方法,以确保为每个模型正确地触发deleting
和deleted
事件。
查询作用域
查询范围与Eloquent中的实现方式完全相同。
全局作用域
全局范围允许您为给定模型的所有查询添加约束。编写自己的全局范围可以提供一种方便、简单的方法,以确保给定模型的所有查询都接收某些约束。
编写全局范围
编写全局范围很简单。首先,定义一个实现Matchory\Elasticsearch\Interfaces\ScopeInterface
接口的类。Laravel没有约定俗成的位置来放置范围类,因此您可以将此类放在任何您希望的目录中。
ScopeInterface
要求您实现一个方法:apply
。根据需要,apply
方法可以添加约束或其他类型的子句到查询中。
namespace App\Scopes; use Matchory\Elasticsearch\Builder; use Matchory\Elasticsearch\Model; use Matchory\Elasticsearch\Interfaces\ScopeInterface; class AncientScope implements ScopeInterface { /** * Apply the scope to a given Elasticsearch query builder. * * @param \Matchory\Elasticsearch\Builder $query * @param \Matchory\Elasticsearch\Model $model * @return void */ public function apply(Builder $query, Model $model) { $query->where('created_at', '<', now()->subYears(2000)); } }
应用全局范围
要将全局范围分配给模型,您应该覆盖模型的booted方法并调用模型的addGlobalScope
方法。addGlobalScope
方法接受您的作用域实例作为其唯一参数。
namespace App\Models; use App\Scopes\AncientScope; use Matchory\Elasticsearch\Model; class Post extends Model { /** * The "booted" method of the model. * * @return void */ protected static function booted() { static::addGlobalScope(new AncientScope); } }
匿名全局范围
Elasticsearch还允许您使用闭包定义全局范围,这对于不需要单独类的简单范围非常有用。当使用闭包定义全局范围时,您应将自定义作用域名称作为addGlobalScope
方法的第一参数。
namespace App\Models; use Matchory\Elasticsearch\Builder; use Matchory\Elasticsearch\Model; class Post extends Model { /** * The "booted" method of the model. * * @return void */ protected static function booted(): void { static::addGlobalScope('ancient', function (Builder $query) { $query->where('created_at', '<', now()->subYears(2000)); }); } }
移除全局范围
如果您想为给定查询移除全局范围,可以使用withoutGlobalScope
方法。此方法接受全局范围类的名称作为其唯一参数。
Post::withoutGlobalScope(AncientScope::class)->get();
或者,如果您使用闭包定义了全局范围,应传递您分配给全局范围的字符串名称。
Post::withoutGlobalScope('ancient')->get();
如果您想移除多个或所有查询的全局范围,可以使用withoutGlobalScopes
方法。
// Remove all of the global scopes... Post::withoutGlobalScopes()->get();
// Remove some of the global scopes... Post::withoutGlobalScopes([ FirstScope::class, SecondScope::class ])->get();
局部作用域
局部范围允许您定义可在整个应用程序中轻松重用的常见查询约束集。例如,您可能需要频繁检索所有被认为是“受欢迎”的帖子。
编写局部范围
要定义范围,请在Elasticsearch模型方法前添加scope前缀。作用域应该始终返回一个查询构建器实例。
namespace App\Models; use Matchory\Elasticsearch\Model; class Post extends Model { /** * Scope a query to only include popular posts. * * @param \Matchory\Elasticsearch\Builder $query * @return \Matchory\Elasticsearch\Builder */ public function scopePopular(Query $query): Query { return $query->where('votes', '>', 100); } /** * Scope a query to only include published posts. * * @param \Matchory\Elasticsearch\Builder $query * @return \Matchory\Elasticsearch\Builder */ public function scopePublished(Query $query): Query { return $query->where('published', 1); } }
利用局部范围
作用域定义后,您可以在查询模型时调用作用域方法。但是,在调用方法时不应包含作用域前缀。您甚至可以链式调用各种作用域。
use App\Models\Post; $posts = Post::popular()->published()->orderBy('created_at')->get();
动态作用域
有时您可能希望定义一个接受参数的作用域。要开始,只需将额外的参数添加到您的范围方法签名中。范围参数应该在 $query
参数之后定义。
namespace App\Models; use Matchory\Elasticsearch\Model; class Post extends Model { /** * Scope a query to only include posts of a given type. * * @param \Matchory\Elasticsearch\Builder $query * @param mixed $type * @return \Matchory\Elasticsearch\Builder */ public function scopeOfType(Query $query, $type): Query { return $query->where('type', $type); } }
一旦将预期的参数添加到您的范围方法签名中,您可以在调用范围时传递这些参数。
$posts = Post::ofType('news')->get();
比较模型
有时您可能需要确定两个模型是否是“相同”的。可以使用 is 方法快速验证两个模型具有相同的 ID、索引和连接。
if ($post->is($anotherPost)) { // }
事件
Elasticsearch 模型派发多个事件,允许您挂钩到模型生命周期的以下时刻:retrieved
、creating
、created
、updating
、updated
、saving
、saved
、deleting
、deleted
、restoring
、restored
和 replicating
。
当从索引中检索现有模型时,将触发 retrieved
事件。当首次保存新模型时,将触发 creating
和 created
事件。当修改现有模型并调用 save
方法时,将触发 updating
/ updated
事件。当模型创建或更新(即使模型的属性未更改)时,将触发 saving
/ saved
事件。
要开始监听模型事件,在您的 Elasticsearch 模型上定义一个 dispatchesEvents
属性。此属性将 Elasticsearch 模型生命周期的各个点映射到您自己的 事件类。每个模型事件类都应通过其构造函数接收受影响模型的实例。
namespace App\Models; use Matchory\Elasticsearch\Model; use App\Events\UserDeleted; use App\Events\UserSaved; class Post extends Model { /** * The event map for the model. * * @var array */ protected $dispatchesEvents = [ 'saved' => PostSaved::class, 'deleted' => PostDeleted::class, ]; }
定义并映射您的事件后,您可以使用 事件监听器 来处理事件。
使用闭包
除了使用自定义事件类之外,您还可以注册在派发各种模型事件时执行的闭包。通常,您应在模型的 booted
方法中注册这些闭包。
namespace App\Models; use Matchory\Elasticsearch\Model; class Post extends Model { /** * The "booted" method of the model. * * @return void */ protected static function booted(): void { static::created(function ($post) { // }); } }
如果需要,您可以在注册模型事件时利用 可排队匿名事件监听器。这将指示 Laravel 使用您的应用程序的 队列 在后台执行模型事件监听器。
use function Illuminate\Events\queueable; static::created(queueable(function ($post): void { // }));
访问器 & 修改器
定义一个访问器
要定义一个 accessor
,在您的模型上创建一个 getFooAttribute
方法,其中 Foo
是您希望访问的字段的“studly”大小写名称。在此示例中,我们将为 title
属性定义一个访问器。当尝试检索 title
属性的值时,访问器将自动被模型调用。
namespace App; use Matchory\Elasticsearch\Model; class post extends Model { /** * Get the post title. * * @param string $value * @return string */ public function getTitleAttribute(string $value): string { return ucfirst($value); } }
如您所见,字段的原始值传递给访问器,允许您操纵并返回该值。要访问访问器的值,您只需在模型实例上访问 title
属性即可。
$post = App\Post::find(1); $title = $post->title;
偶尔,您可能需要添加没有在索引中相应字段的数组属性。为此,只需为该值定义一个访问器。
public function getIsPublishedAttribute(): bool { return $this->attributes['status'] === 1; }
创建访问器后,只需将其添加到模型的 appends
属性中。
protected $appends = ['is_published'];
一旦属性被添加到 appends 列表中,它将包含在模型的数组中。
定义一个修改器
要定义一个修改器,在您的模型上定义一个 setFooAttribute
方法,其中 Foo
是您希望访问的字段的“studly”大小写名称。所以,再次,让我们为 title
属性定义一个修改器。当我们尝试设置模型上的 title
属性值时,此修改器将自动调用。
namespace App; use Matchory\Elasticsearch\Model; class post extends Model { /** * Set the post title. * * @param string $value * @return string */ public function setTitleAttribute(string $value): string { return strtolower($value); } }
修改器将接收要设置在属性上的值,允许您操纵该值并将操纵后的值设置在模型内部 $attributes
属性上。例如,如果我们尝试将标题属性设置为 Awesome post to read
$post = App\Post::find(1); $post->title = 'Awesome post to read';
在这个例子中,将调用setTitleAttribute函数,其值为值得一读的精彩文章
。然后修改器会将tolower函数应用于名称,并将结果值设置在内部的$attributes数组中。
禁用事件
有时您可能需要临时“禁用”由模型触发的事件。您可以使用withoutEvents
方法实现此功能。withoutEvents
方法只接受一个闭包作为其唯一参数。在此闭包中执行的任何代码都不会触发模型事件。例如,以下示例将检索并删除一个App\Models\Post
实例,而不会触发任何模型事件。闭包返回的任何值都将由withoutEvents
方法返回
use App\Models\Post; $post = Post::withoutEvents(function () use () { Post::findOrFail(1)->delete(); return Post::find(2); });
不触发事件保存单个模型
有时您可能希望“保存”一个给定的模型而不触发任何事件。您可以使用saveQuietly
方法完成此操作
$post = Post::findOrFail(1); $post->title = 'Other search strategies'; $post->saveQuietly();
复制模型
您可以使用replicate方法创建现有模型实例的未保存副本。此方法在您有共享许多相同属性的模型实例时特别有用
use App\Models\Address; $shipping = Address::create([ 'type' => 'shipping', 'line_1' => '123 Example Street', 'city' => 'Victorville', 'state' => 'CA', 'postcode' => '90001', ]); $billing = $shipping->replicate()->fill([ 'type' => 'billing' ]); $billing->save();
修改器和类型转换
访问器、修改器和属性转换允许您在检索或设置模型实例上的属性时转换Elasticsearch属性值。例如,您可能希望使用Laravel加密器在索引中存储值时对其进行加密,然后在访问Elasticsearch模型时自动解密属性。或者,您可能希望将存储在索引中的JSON字符串转换为数组,当通过Elasticsearch模型访问时。
访问器 & 修改器
定义一个访问器
访问器将Elasticsearch属性值转换为访问时。要定义访问器,请在您的模型上创建一个get{Attribute}Attribute
方法,其中{Attribute}
是您希望访问的字段的“studly”大小写名称。
在这个例子中,我们将定义一个对first_name
属性的访问器。Elasticsearch在尝试检索first_name
属性值时会自动调用此访问器
namespace App\Models; use Matchory\Elasticsearch\Model; class User extends Model { /** * Get the user's first name. * * @param string $value * @return string */ public function getFirstNameAttribute(string $value): string { return ucfirst($value); } }
如您所见,字段的原始值将传递给访问器,允许您操作并返回值。要访问访问器的值,您只需访问模型实例上的first_name
属性即可
use App\Models\User; $user = User::find(1); $firstName = $user->first_name;
您不仅限于在访问器中与单个属性交互。您还可以使用访问器从现有属性返回新的、计算出的值
/** * Get the user's full name. * * @return string */ public function getFullNameAttribute(): string { return "{$this->first_name} {$this->last_name}"; }
定义一个修改器
修改器在设置Elasticsearch属性值时进行转换。要定义修改器,请在您的模型上定义一个set{Attribute}Attribute
方法,其中{Attribute}
是您希望访问的字段的“studly”大小写名称。
让我们定义一个对first_name
属性的修改器。当我们尝试在模型上设置first_name
属性值时,此修改器将自动被调用
namespace App\Models; use Matchory\Elasticsearch\Model; class User extends Model { /** * Set the user's first name. * * @param string $value * @return void */ public function setFirstNameAttribute(string $value): void { $this->attributes['first_name'] = strtolower($value); } }
修改器将接收要设置的属性值,允许您操作该值并将操作后的值设置在Elasticsearch模型的内部$attributes
属性上。要使用我们的修改器,我们只需设置Elasticsearch模型上的first_name
属性即可
use App\Models\User; $user = User::find(1); $user->first_name = 'Sally';
在这个例子中,setFirstNameAttribute
函数将使用值Sally
被调用。修改器将然后将tolower函数应用于名称,并将结果值设置在内部的$attributes
数组中。
属性转换
属性转换提供与访问器和修改器类似的功能,而无需在您的模型上定义任何额外的函数。相反,您的模型$casts
属性提供了一个方便的方法来将属性转换为常见的数据类型。
$casts
属性应是一个数组,其中键是要转换的属性名称,值是您希望将字段转换到的类型。支持的转换类型有:
数组
布尔值
集合
日期
日期时间
十进制:
双精度浮点数
加密
加密:数组
加密:集合
加密:对象
浮点数
整数
对象
实数
字符串
时间戳
为了演示属性转换,让我们将 is_admin
属性进行转换,该属性以整数(0
或 1
)的形式存储在我们的索引中,转换为布尔值
namespace App\Models; use Matchory\Elasticsearch\Model; class User extends Model { /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'is_admin' => 'boolean', ]; }
定义转换后,当您访问 is_admin
属性时,它始终会转换为布尔值,即使其底层值以整数形式存储在索引中
$user = App\Models\User::find(1); if ($user->is_admin) { // }
注意:空值的属性不会进行转换。
日期转换
您可以通过在模型中定义 $cast
属性数组来转换日期属性。通常,日期应使用 datetime
转换。
当定义 date
或 datetime
转换时,您还可以指定日期的格式。当模型序列化为数组或 JSON 时,将使用此格式
/** * The attributes that should be cast. * * @var array */ protected $casts = [ 'created_at' => 'datetime:Y-m-d', ];
当字段转换为日期时,您可以将其值设置为 UNIX 时间戳、日期字符串(Y-m-d
)、日期时间字符串或 DateTime
/ Carbon
实例。日期的值将被正确转换并存储在您的索引中
您可以通过在模型上定义 serializeDate
方法来自定义模型所有日期的默认序列化格式。此方法不会影响您的日期如何格式化以存储在索引中
/** * Prepare a date for array / JSON serialization. * * @param \DateTimeInterface $date * @return string */ protected function serializeDate(DateTimeInterface $date) { return $date->format('Y-m-d'); }
为了指定在索引中实际存储模型日期时应使用的格式,您应在模型上定义 $dateFormat
属性
/** * The storage format of the model's date fields. * * @var string */ protected $dateFormat = 'U';
自定义转换
Laravel 有多种内置的、有用的转换类型;然而,您有时可能需要定义自己的转换类型。您可以定义一个实现 CastsAttributes
接口的类来完成此操作。
实现此接口的类必须定义一个 get
和 set
方法。get
方法负责将来自索引的原始值转换为转换值,而 set
方法应将转换值转换为可以存储在索引中的原始值。例如,我们将重新实现内置的 json
转换类型作为自定义转换类型
注意:由于类型不兼容,您可能需要为 Eloquent 和 Elasticsearch 模型使用不同的转换,或省略参数类型。
namespace App\Casts; use Illuminate\Contracts\Database\Eloquent\CastsAttributes; class Json implements CastsAttributes { /** * Cast the given value. * * @param \Illuminate\Database\Eloquent\Model|\Matchory\Elasticsearch\Model $model * @param string $key * @param mixed $value * @param array $attributes * @return array */ public function get($model, $key, $value, $attributes) { return json_decode($value, true); } /** * Prepare the given value for storage. * * @param \Illuminate\Database\Eloquent\Model|\Matchory\Elasticsearch\Model $model * @param string $key * @param array $value * @param array $attributes * @return string */ public function set($model, $key, $value, $attributes) { return json_encode($value); } }
一旦您定义了自定义转换类型,您就可以使用其类名将其附加到模型属性上
namespace App\Models; use App\Casts\Json; use Matchory\Elasticsearch\Model; class User extends Model { /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'options' => Json::class, ]; }
值对象转换
您不仅可以将值转换为原始类型,还可以将值转换为对象。定义将值转换为对象的自定义转换与转换为原始类型非常相似;然而,set
方法应返回一个键/值对数组,这些键/值对将用于在模型上设置原始的可存储值。
例如,我们将定义一个自定义转换类,该类将多个模型值转换为单个 Address
值对象。我们假设 Address
值有两个公共属性:lineOne
和 lineTwo
namespace App\Casts; use App\Models\Address as AddressModel; use Illuminate\Contracts\Database\Eloquent\CastsAttributes; use InvalidArgumentException; class Address implements CastsAttributes { /** * Cast the given value. * * @param \Illuminate\Database\Eloquent\Model|\Matchory\Elasticsearch\Model $model * @param string $key * @param mixed $value * @param array $attributes * @return \App\Models\Address */ public function get($model, $key, $value, $attributes) { return new AddressModel( $attributes['address_line_one'], $attributes['address_line_two'] ); } /** * Prepare the given value for storage. * * @param \Illuminate\Database\Eloquent\Model|\Matchory\Elasticsearch\Model $model * @param string $key * @param \App\Models\Address $value * @param array $attributes * @return array */ public function set($model, $key, $value, $attributes) { if (! $value instanceof AddressModel) { throw new InvalidArgumentException('The given value is not an Address instance.'); } return [ 'address_line_one' => $value->lineOne, 'address_line_two' => $value->lineTwo, ]; } }
在将值对象转换为对象时,对值对象所做的任何更改都会在模型保存之前自动同步回模型
use App\Models\User; $user = User::find(1); $user->address->lineOne = 'Updated Address Value'; $user->save();
提示:如果您计划将包含值对象的 Elasticsearch 模型序列化为 JSON 或数组,您应该在值对象上实现
Illuminate\Contracts\Support\Arrayable
和JsonSerializable
接口。
数组/JSON 序列化
当使用toArray
和toJson
方法将Elasticsearch模型转换为数组或JSON时,只要你的自定义转换值对象实现了Illuminate\Contracts\Support\Arrayable
和JsonSerializable
接口,它们通常会一起序列化。然而,当使用第三方库提供的值对象时,你可能无法将这些接口添加到对象中。
因此,你可以指定你的自定义转换类负责序列化值对象。为此,你的自定义类转换应实现Illuminate\Contracts\Database\Eloquent\SerializesCastableAttributes
接口。此接口声明你的类应包含一个serialize
方法,该方法应返回你的值对象的序列化形式。
/** * Get the serialized representation of the value. * * @param \Illuminate\Database\Eloquent\Model|\Matchory\Elasticsearch\Model $model * @param string $key * @param mixed $value * @param array $attributes * @return mixed */ public function serialize($model, string $key, $value, array $attributes) { return (string) $value; }
入站转换
有时,你可能需要编写一个自定义转换,它只转换在模型上设置的值,而在从模型检索属性时不执行任何操作。一个仅入站的经典转换示例是“哈希”转换。仅入站自定义转换应实现CastsInboundAttributes
接口,该接口只需要定义一个set
方法。
namespace App\Casts; use Illuminate\Contracts\Database\Eloquent\CastsInboundAttributes; class Hash implements CastsInboundAttributes { /** * The hashing algorithm. * * @var string */ protected $algorithm; /** * Create a new cast class instance. * * @param string|null $algorithm * @return void */ public function __construct($algorithm = null) { $this->algorithm = $algorithm; } /** * Prepare the given value for storage. * * @param \Illuminate\Database\Eloquent\Model|\Matchory\Elasticsearch\Model $model * @param string $key * @param array $value * @param array $attributes * @return string */ public function set($model, $key, $value, $attributes) { return is_null($this->algorithm) ? bcrypt($value) : hash($this->algorithm, $value); } }
转换参数
将自定义转换附加到模型时,可以使用冒号(:)字符将它们从类名分开,并用逗号分隔多个参数来指定转换参数。这些参数将被传递到转换类的构造函数中。
/** * The attributes that should be cast. * * @var array */ protected $casts = [ 'secret' => Hash::class.':sha256', ];
可转换的
你可能希望允许你的应用程序的值对象定义它们自己的自定义转换类。你不必将自定义转换类附加到你的模型,而可以另附一个实现了Illuminate\Contracts\Database\Eloquent\Castable
接口的值对象类。
use App\Models\Address; protected $casts = [ 'address' => Address::class, ];
实现了Castable
接口的对象必须定义一个castUsing
方法,该方法返回负责转换到和从Castable
类的自定义转换类。
namespace App\Models; use Illuminate\Contracts\Database\Eloquent\Castable; use App\Casts\Address as AddressCast; class Address implements Castable { /** * Get the name of the caster class to use when casting from / to this cast target. * * @param array $arguments * @return string */ public static function castUsing(array $arguments): string { return AddressCast::class; } }
使用Castable
类时,你仍然可以在$casts
定义中提供参数。这些参数将被传递到castUsing
方法中。
use App\Models\Address; protected $casts = [ 'address' => Address::class.':argument', ];
可转换的 & 匿名转换类
通过结合“可转换的”与PHP的匿名类,你可以将值对象及其转换逻辑定义为一个单一的转换对象。为此,从你的值对象的castUsing
方法返回一个匿名类。该匿名类应实现CastsAttributes
接口。
namespace App\Models; use Illuminate\Contracts\Database\Eloquent\Castable; use Illuminate\Contracts\Database\Eloquent\CastsAttributes; class Address implements Castable { // ... /** * Get the caster class to use when casting from / to this cast target. * * @param array $arguments * @return object|string */ public static function castUsing(array $arguments) { return new class implements CastsAttributes { public function get($model, $key, $value, $attributes) { return new Address( $attributes['address_line_one'], $attributes['address_line_two'] ); } public function set($model, $key, $value, $attributes) { return [ 'address_line_one' => $value->lineOne, 'address_line_two' => $value->lineTwo, ]; } }; } }
路由模型绑定
当向路由或控制器动作注入模型ID时,你通常会查询Elasticsearch索引以检索与该ID对应的模型。Laravel路由模型绑定提供了一种方便的方法,可以自动将模型实例直接注入到你的路由中。例如,你可以注入与给定ID匹配的整个User模型实例,而不是注入用户ID。
隐式绑定
Laravel自动解析在路由或控制器动作中定义的Elasticsearch模型,其类型提示变量名称与路由段名称匹配。例如
use App\Models\Post; Route::get('/posts/{post}', function (Post $post) { return $post->content; });
由于$post
变量类型提示为Elasticsearch模型App\Models\Post
,并且变量名称与URI段{post}
匹配,因此Laravel将自动注入具有与请求URI中相应值匹配的ID的模型实例。如果没有在数据库中找到匹配的模型实例,将自动生成一个404
HTTP响应。
当然,使用控制器方法时也可以进行隐式绑定。再次注意,URI段{post}
与控制器中的$post
变量匹配,该变量包含一个类型提示为App\Models\Post
的变量。
use App\Http\Controllers\PostController; use App\Models\Post; // Route definition... Route::get('/posts/{post}', [PostController::class, 'show']); // Controller method definition... public function show(Post $post): View { return view('post.full', ['post' => $post]); }
自定义键
有时你可能希望使用除_id
之外的字段来解析Elasticsearch模型。为此,你可以在路由参数定义中指定该字段。
use App\Models\Post; Route::get('/posts/{post:slug}', fn(Post $post): Post => $post);
如果你想使模型绑定始终使用除_id
之外的字段来检索给定的模型类,你可以在Elasticsearch模型上覆盖getRouteKeyName
方法。
/** * Get the route key for the model. * * @return string */ public function getRouteKeyName(): string { return 'slug'; }
自定义缺失模型行为
通常情况下,如果没有找到隐式绑定的模型,则会生成一个404
HTTP 响应。但是,您可以在定义路由时调用缺失的方法来自定义此行为。缺失的方法接受一个闭包,如果找不到隐式绑定的模型,则会调用该闭包。
use App\Http\Controllers\LocationsController; use Illuminate\Http\Request; Route::get('/locations/{location:slug}', [LocationsController::class, 'show']) ->missing(fn(Request $request) => Redirect::route('locations.index') ->name('locations.view');
显式绑定
使用模型绑定时,您无需使用Laravel的隐式、基于约定的模型解析。您还可以显式定义路由参数与模型之间的对应关系。要注册显式绑定,请使用路由器的模型方法来指定给定参数的类。您应该在RouteServiceProvider
类的boot
方法开始处定义您的显式模型绑定。
use App\Models\Post; use Illuminate\Support\Facades\Route; /** * Define your route model bindings, pattern filters, etc. * * @return void */ public function boot():void { Route::model('post', Post::class); // ... }
接下来,定义一个包含{post}
参数的路由
use App\Models\Post; Route::get('/posts/{post}', function (Post $post) { // ... });
由于我们已经将所有{post}
参数绑定到了App\Models\Post
模型,因此将注入该类的实例。例如,对posts/1
的请求将注入ID为1
的索引中的Post
实例。
如果在索引中没有找到匹配的模型实例,则会自动生成一个404
HTTP 响应。
自定义解析逻辑
如果您想定义自己的模型绑定解析逻辑,可以使用Route::bind
方法。您传递给bind方法的闭包将接收URI段值,并应返回应注入到路由中的类的实例。同样,这种自定义应发生在您应用程序的RouteServiceProvider
的boot
方法中。
use App\Models\Post; use Illuminate\Support\Facades\Route; /** * Define your route model bindings, pattern filters, etc. * * @return void */ public function boot(): void { Route::bind('post', function (string $value): Post { return Post::where('title', $value)->firstOrFail(); }); // ... }
或者,您可以覆盖Elasticsearch模型上的resolveRouteBinding
方法。该方法将接收URI段值,并应返回应注入到路由中的类的实例
/** * Retrieve the model for a bound value. * * @param mixed $value * @param string|null $field * @return \Matchory\Elasticsearch\Model|null */ public function resolveRouteBinding($value, string|null $field = null): ?self { return $this->where('name', $value)->firstOrFail(); }
如果路由使用隐式绑定作用域,则将使用resolveChildRouteBinding
方法来解决父模型的子绑定
/** * Retrieve the child model for a bound value. * * @param string $childType * @param mixed $value * @param string|null $field * @return \Matchory\Elasticsearch\Model|null */ public function resolveChildRouteBinding(string $childType, $value, string|null $field): ?self { return parent::resolveChildRouteBinding($childType, $value, $field); }
作为查询构建器的使用
您可以使用ES
外观在任何地方直接访问查询构建器。
创建一个新的索引
ES::create('my_index'); # or ES::index('my_index')->create();
创建带有自定义选项的索引(可选)
use Matchory\Elasticsearch\Facades\ES; use Matchory\Elasticsearch\Index; ES::index('my_index')->create(function(Index $index) { $index->shards(5)->replicas(1)->mapping([ 'my_type' => [ 'properties' => [ 'first_name' => [ 'type' => 'string', ], 'age' => [ 'type' => 'integer' ] ] ] ]) }); # or ES::create('my_index', function(Index $index){ $index->shards(5)->replicas(1)->mapping([ 'my_type' => [ 'properties' => [ 'first_name' => [ 'type' => 'string', ], 'age' => [ 'type' => 'integer' ] ] ] ]) });
删除索引
ES::drop("my_index"); # or ES::index("my_index")->drop();
运行查询
要运行查询,首先(可选)选择连接和索引。
$documents = ES::connection("default") ->index("my_index") ->get(); # return a collection of results
您可以将上述查询缩短为:
$documents = ES::index("my_index")->get(); # return a collection of results
在查询中显式设置连接或索引名称将覆盖config/es.php
中的配置。
通过id获取文档
ES::id(3)->first();
排序
ES::type("my_type")->orderBy("created_at", "desc")->get(); # Sorting with text search score ES::type("my_type")->orderBy("_score")->get();
限制和偏移量
ES::type("my_type")->take(10)->skip(5)->get();
仅选择特定字段
ES::type("my_type")->select("title", "content")->take(10)->skip(5)->get();
WHERE子句
ES::type("my_type")->where("status", "published")->get(); # or ES::type("my_type")->where("status", "=", "published")->get();
WHERE大于
ES::type("my_type")->where("views", ">", 150)->get();
WHERE大于等于
ES::type("my_type")->where("views", ">=", 150)->get();
WHERE小于
ES::type("my_type")->where("views", "<", 150)->get();
WHERE小于等于
ES::type("my_type")->where("views", "<=", 150)->get();
WHERE LIKE
ES::type("my_type")->where("title", "like", "foo")->get();
WHERE字段存在
ES::type("my_type")->where("hobbies", "exists", true)->get(); # or ES::type("my_type")->whereExists("hobbies", true)->get();
WHERE IN子句
ES::type("my_type")->whereIn("id", [100, 150])->get();
WHERE BETWEEN子句
ES::type("my_type")->whereBetween("id", 100, 150)->get(); # or ES::type("my_type")->whereBetween("id", [100, 150])->get();
WHERE NOT子句
ES::type("my_type")->whereNot("status", "published")->get(); # or ES::type("my_type")->whereNot("status", "=", "published")->get();
WHERE NOT大于
ES::type("my_type")->whereNot("views", ">", 150)->get();
WHERE NOT大于等于
ES::type("my_type")->whereNot("views", ">=", 150)->get();
WHERE NOT小于
ES::type("my_type")->whereNot("views", "<", 150)->get();
WHERE NOT小于等于
ES::type("my_type")->whereNot("views", "<=", 150)->get();
WHERE NOT LIKE
ES::type("my_type")->whereNot("title", "like", "foo")->get();
WHERE NOT字段存在
ES::type("my_type")->whereNot("hobbies", "exists", true)->get(); # or ES::type("my_type")->whereExists("hobbies", true)->get();
WHERE NOT IN子句
ES::type("my_type")->whereNotIn("id", [100, 150])->get();
WHERE NOT BETWEEN子句
ES::type("my_type")->whereNotBetween("id", 100, 150)->get(); # or ES::type("my_type")->whereNotBetween("id", [100, 150])->get();
根据从geo点搜索的距离
ES::type("my_type")->distance("location", ["lat" => -33.8688197, "lon" => 151.20929550000005], "10km")->get(); # or ES::type("my_type")->distance("location", "-33.8688197,151.20929550000005", "10km")->get(); # or ES::type("my_type")->distance("location", [151.20929550000005, -33.8688197], "10km")->get();
使用数组查询搜索
ES::type("my_type")->body([ "query" => [ "bool" => [ "must" => [ [ "match" => [ "address" => "mill" ] ], [ "match" => [ "address" => "lane" ] ] ] ] ] ])->get(); # Note that you can mix between query builder and array queries. # The query builder will will be merged with the array query. ES::type("my_type")->body([ "_source" => ["content"] "query" => [ "bool" => [ "must" => [ [ "match" => [ "address" => "mill" ] ] ] ] ], "sort" => [ "_score" ] ])->select("name")->orderBy("created_at", "desc")->take(10)->skip(5)->get(); # The result query will be /* Array ( [index] => my_index [type] => my_type [body] => Array ( [_source] => Array ( [0] => content [1] => name ) [query] => Array ( [bool] => Array ( [must] => Array ( [0] => Array ( [match] => Array ( [address] => mill ) ) ) ) ) [sort] => Array ( [0] => _score [1] => Array ( [created_at] => desc ) ) ) [from] => 5 [size] => 10 [client] => Array ( [ignore] => Array ( ) ) ) */
搜索整个文档
ES::type("my_type")->search("hello")->get(); # search with Boost = 2 ES::type("my_type")->search("hello", 2)->get(); # search within specific fields with different weights ES::type("my_type")->search("hello", function($search){ $search->boost(2)->fields(["title" => 2, "content" => 1]) })->get();
使用高亮字段搜索
$doc = ES::type("my_type")->highlight("title")->search("hello")->first(); # Multiple fields Highlighting is allowed. $doc = ES::type("my_type")->highlight("title", "content")->search("hello")->first(); # Return all highlights as array using $doc->getHighlights() method. $doc->getHighlights(); # Also you can return only highlights of specific field. $doc->getHighlights("title");
仅返回第一个文档
ES::type("my_type")->search("hello")->first();
仅返回计数
ES::type("my_type")->search("hello")->count();
Scan-and-Scroll查询
# These queries are suitable for large amount of data. # A scrolled search allows you to do an initial search and to keep pulling batches of results # from Elasticsearch until there are no more results left. # It’s a bit like a cursor in a traditional database $documents = ES::type("my_type")->search("hello") ->scroll("2m") ->take(1000) ->get(); # Response will contain a hashed code `scroll_id` will be used to get the next result by running $documents = ES::type("my_type")->search("hello") ->scroll("2m") ->scrollID("DnF1ZXJ5VGhlbkZldGNoBQAAAAAAAAFMFlJQOEtTdnJIUklhcU1FX2VqS0EwZncAAAAAAAABSxZSUDhLU3ZySFJJYXFNRV9laktBMGZ3AAAAAAAAAU4WUlA4S1N2ckhSSWFxTUVfZWpLQTBmdwAAAAAAAAFPFlJQOEtTdnJIUklhcU1FX2VqS0EwZncAAAAAAAABTRZSUDhLU3ZySFJJYXFNRV9laktBMGZ3") ->get(); # And so on ... # Note that you don't need to write the query parameters in every scroll. All you need the `scroll_id` and query scroll time. # To clear `scroll_id` ES::type("my_type")->scrollID("DnF1ZXJ5VGhlbkZldGNoBQAAAAAAAAFMFlJQOEtTdnJIUklhcU1FX2VqS0EwZncAAAAAAAABSxZSUDhLU3ZySFJJYXFNRV9laktBMGZ3AAAAAAAAAU4WUlA4S1N2ckhSSWFxTUVfZWpLQTBmdwAAAAAAAAFPFlJQOEtTdnJIUklhcU1FX2VqS0EwZncAAAAAAAABTRZSUDhLU3ZySFJJYXFNRV9laktBMGZ3") ->clear();
每页5个文档分页
$documents = ES::type("my_type")->search("hello")->paginate(5); # Getting pagination links $documents->links(); # Bootstrap 4 pagination $documents->links("bootstrap-4"); # Simple bootstrap 4 pagination $documents->links("simple-bootstrap-4"); # Simple pagination $documents->links("simple-default");
这些都是您可能使用的分页方法
$documents->count() $documents->currentPage() $documents->firstItem() $documents->hasMorePages() $documents->lastItem() $documents->lastPage() $documents->nextPageUrl() $documents->perPage() $documents->previousPageUrl() $documents->total() $documents->url($page)
获取未执行的查询数组
ES::type("my_type")->search("hello")->where("views", ">", 150)->query();
获取原始Elasticsearch响应
ES::type("my_type")->search("hello")->where("views", ">", 150)->response();
忽略不良HTTP响应
ES::type("my_type")->ignore(404, 500)->id(5)->first();
查询缓存(Laravel & Lumen)
该包包含一个基于laravel缓存的内置缓存层。
ES::type("my_type")->search("hello")->remember(10)->get(); # Specify a custom cache key ES::type("my_type")->search("hello")->remember(10, "last_documents")->get(); # Caching using other available driver ES::type("my_type")->search("hello")->cacheDriver("redis")->remember(10, "last_documents")->get(); # Caching with cache key prefix ES::type("my_type")->search("hello")->cacheDriver("redis")->cachePrefix("docs")->remember(10, "last_documents")->get();
执行Elasticsearch原始查询
ES::raw()->search([ "index" => "my_index", "type" => "my_type", "body" => [ "query" => [ "bool" => [ "must" => [ [ "match" => [ "address" => "mill" ] ], [ "match" => [ "address" => "lane" ] ] ] ] ] ] ]);
插入新文档
ES::type("my_type")->id(3)->insert([ "title" => "Test document", "content" => "Sample content" ]); # A new document will be inserted with _id = 3. # [id is optional] if not specified, a unique hash key will be generated.
一次批量插入多个文档。
# Main query ES::index("my_index")->type("my_type")->bulk(function ($bulk){ # Sub queries $bulk->index("my_index_1")->type("my_type_1")->id(10)->insert(["title" => "Test document 1","content" => "Sample content 1"]); $bulk->index("my_index_2")->id(11)->insert(["title" => "Test document 2","content" => "Sample content 2"]); $bulk->id(12)->insert(["title" => "Test document 3", "content" => "Sample content 3"]); }); # Notes from the above query: # As index and type names are required for insertion, Index and type names are extendable. This means that: # If index() is not specified in subquery: # -- The builder will get index name from the main query. # -- if index is not specified in main query, the builder will get index name from configuration file. # And # If type() is not specified in subquery: # -- The builder will get type name from the main query. # you can use old bulk code style using multidimensional array of [id => data] pairs ES::type("my_type")->bulk([ 10 => [ "title" => "Test document 1", "content" => "Sample content 1" ], 11 => [ "title" => "Test document 2", "content" => "Sample content 2" ] ]); # The two given documents will be inserted with its associated ids
更新现有文档
ES::type("my_type")->id(3)->update([ "title" => "Test document", "content" => "sample content" ]); # Document has _id = 3 will be updated. # [id is required]
# Bulk update ES::type("my_type")->bulk(function ($bulk){ $bulk->id(10)->update(["title" => "Test document 1","content" => "Sample content 1"]); $bulk->id(11)->update(["title" => "Test document 2","content" => "Sample content 2"]); });
递增字段
ES::type("my_type")->id(3)->increment("views"); # Document has _id = 3 will be incremented by 1. ES::type("my_type")->id(3)->increment("views", 3); # Document has _id = 3 will be incremented by 3. # [id is required]
递减字段
ES::type("my_type")->id(3)->decrement("views"); # Document has _id = 3 will be decremented by 1. ES::type("my_type")->id(3)->decrement("views", 3); # Document has _id = 3 will be decremented by 3. # [id is required]
使用脚本更新
# increment field by script ES::type("my_type")->id(3)->script( "ctx._source.$field += params.count", ["count" => 1] ); # add php tag to tags array list ES::type("my_type")->id(3)->script( "ctx._source.tags.add(params.tag)", ["tag" => "php"] ); # delete the doc if the tags field contain mongodb, otherwise it does nothing (noop) ES::type("my_type")->id(3)->script( "if (ctx._source.tags.contains(params.tag)) { ctx.op = 'delete' } else { ctx.op = 'none' }", ["tag" => "mongodb"] );
删除文档
ES::type("my_type")->id(3)->delete(); # Document has _id = 3 will be deleted. # [id is required]
# Bulk delete ES::type("my_type")->bulk(function ($bulk){ $bulk->id(10)->delete(); $bulk->id(11)->delete(); });
版本
请查看发布页面。
作者
Basem Khirat - basemkhirat@gmail.com - @basemkhirat
Moritz Friedrich - moritz@matchory.com
错误、建议和贡献
感谢所有为原始项目做出贡献的人,以及所有为这个分支做出贡献的人!
请使用Github来报告错误,以及提出评论或建议。
如果您有兴趣帮忙,最紧迫的问题是使查询构建器现代化,以更好地支持Elasticsearch功能,以及完成测试套件!
许可
MIT
祝您搜索愉快..