laravel-scout-elasticElastic Driver for Laravel Scout

联合创作 · 2023-09-21 11:30

Laravel Scout Elasticsearch Driver


Latest Stable Version Total Downloads License Build Status


This package provides a Elasticsearch driver for Laravel Scout.


Contents



Installation


You can install the package via composer:



composer require tamayo/laravel-scout-elastic


Laravel will automatically register the driver service provider.


Install elasticsearch-php client


For use this library we recomend using the latest version at this time (^7.9)



composer require elasticsearch/elasticsearch


Setting up Elasticsearch configuration


After you've published the Laravel Scout package configuration, you need to set your driver to elasticsearch and add its configuration:



// config/scout.php
...
// Set your driver to elasticsearch
'driver' => env('SCOUT_DRIVER', 'elasticsearch'),
...
/*
|--------------------------------------------------------------------------
| Elasticsearch Configuration
|--------------------------------------------------------------------------
|
| Here you may configure your Elasticsearch settings.
|
*/
'elasticsearch' => [
'hosts' => [
env('ELASTICSEARCH_HOST', 'localhost'),
// [
// 'host' => env('ELASTICSEARCH_HOST', 'localhost'),
// 'port' => env('ELASTICSEARCH_PORT', '9200'),
// 'scheme' => env('ELASTICSEARCH_SCHEME', 'https'),
// 'path' => env('ELASTICSEARCH_PATH', '/elastic'),
// 'user' => env('ELASTICSEARCH_USER', 'username'),
// 'pass' => env('ELASTICSEARCH_PASS', 'password'),
// ]
],
]
...


For host configuration you can refer to the official Elasticsearch documentation


Usage


Now you can use Laravel Scout as described in the Laravel Scout official documentation


Limitations


Identifying Users Currrently user identification is not supported.


Credits



License


The MIT License (MIT).

浏览 11
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报