这篇文章给大家分享的是有关Laravel如何使用scout集成elasticsearch做全文搜索的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
仅限于 es6.8版本
laravel 5.5版本
composer require tamayo/laravel-scout-elastic composer require laravel/scout
Using version ^6.1 for laravel/scout
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- tamayo/laravel-scout-elastic 4.0.0 requires laravel/scout ^5.0 -> satisfiable by laravel/scout[5.0.x-dev].
- tamayo/laravel-scout-elastic 4.0.0 requires laravel/scout ^5.0 -> satisfiable by laravel/scout[5.0.x-dev].
- tamayo/laravel-scout-elastic 4.0.0 requires laravel/scout ^5.0 -> satisfiable by laravel/scout[5.0.x-dev].
- Conclusion: don't install laravel/scout 5.0.x-dev
- Installation request for tamayo/laravel-scout-elastic ^4.0 -> satisfiable by tamayo/laravel-scout-elastic[4.0.0].
Installation failed, reverting ./composer.json to its original content.
composer require laravel/scout ^5.0
'providers' => [
//es search 加上以下内容
Laravel\Scout\ScoutServiceProvider::class,
ScoutEngines\Elasticsearch\ElasticsearchProvider::class,
]
php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"
'driver' => env('SCOUT_DRIVER', 'elasticsearch'),
'elasticsearch' => [
'index' => env('ELASTICSEARCH_INDEX', '你的Index名字'),
'hosts' => [
env('ELASTICSEARCH_HOST', ''),
],
],
ELASTICSEARCH_HOST=elastic:密码@你的域名.com:9200
<?php
namespace App\Console\Commands;
use GuzzleHttp\Client;
use Illuminate\Console\Command;
class ESInit extends Command {
protected $signature = 'es:init';
protected $description = 'init laravel es for news';
public function __construct() { parent::__construct(); }
public function handle() { //创建template
$client = new Client(['auth'=>['elastic', 'yourPassword']]);
$url = config('scout.elasticsearch.hosts')[0] . '/_template/news';
$params = [
'json' => [
'template' => config('scout.elasticsearch.index'),
'settings' => [
'number_of_shards' => 5
],
'mappings' => [
'_default_' => [
'dynamic_templates' => [
[
'strings' => [
'match_mapping_type' => 'string',
'mapping' => [
'type' => 'text',
'analyzer' => 'ik_smart',
'ignore_above' => 256,
'fields' => [
'keyword' => [
'type' => 'keyword'
]
]
]
]
]
]
]
]
]
];
$client->put($url, $params);
// 创建index
$url = config('scout.elasticsearch.hosts')[0] . '/' . config('scout.elasticsearch.index');
$params = [
'json' => [
'settings' => [
'refresh_interval' => '5s',
'number_of_shards' => 5,
'number_of_replicas' => 0
],
'mappings' => [
'_default_' => [
'_all' => [
'enabled' => false
]
]
]
]
];
$client->put($url, $params);
}
}
<?php
namespace App\Console;
use App\Console\Commands\ESInit;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
ESInit::class
];
php artisan es:init
<?php
namespace App\ActivityNews\Model;
use App\Model\Category;
use App\Star\Model\Star;
use Illuminate\Database\Eloquent\Model;
use Laravel\Scout\Searchable;
class ActivityNews extends Model
{
use Searchable;
protected $table = 'activity_news';
protected $fillable = [
'type_id',
'category_id',
'title',
'sub_title',
'thumb',
'intro',
'star_id',
'start_at',
'end_at',
'content',
'video_url',
'status',
'is_open',
'is_top',
'rank',
];
public function star()
{
return $this->hasOne(Star::class, 'id', 'star_id');
}
public function category()
{
return $this->hasOne(Category::class, 'id', 'category_id');
}
public static function getActivityIdByName($name)
{
return self::select('id')
->where([
['status', '=', 1],
['type_id', '=', 2],
['title', 'like', '%' . $name . '%']
])->get()->pluck('id');
}
}
php artisan scout:import "App\ActivityNews\Model\ActivityNews"
php artisan tinker
>>> App\ActivityNews\Model\ActivityNews::search('略懂皮毛')->get();
感谢各位的阅读!关于“Laravel如何使用scout集成elasticsearch做全文搜索”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。