2017 © Pedro Peláez
 

library elastic

Elastic Driver for Laravel Scout

image

tjn/elastic

Elastic Driver for Laravel Scout

  • Friday, July 27, 2018
  • by TangJiaNing
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Laravel Scout Elasticsearch Driver

Software License, (*1)

This package makes is the Elasticsearch driver for Laravel Scout., (*2)

Contents

Installation

You can install the package via composer:, (*3)

``` bash composer require lanzhanqiao/laravel-scout-elastic, (*4)


You must add the Scout service provider and the package service provider in your app.php config: ```php // config/app.php 'providers' => [ ... Laravel\Scout\ScoutServiceProvider::class, ... ScoutEngines\Elasticsearch\ElasticsearchProvider::class, ],

Setting up Elasticsearch configuration

You must have a Elasticsearch server up and running with the index you want to use created, (*5)

If you need help with this please refer to the Elasticsearch documentation, (*6)

After you've published the Laravel Scout package configuration:, (*7)

// config/scout.php
// Set your driver to elasticsearch
    'driver' => env('SCOUT_DRIVER', 'elasticsearch'),

...
    'elasticsearch' => [
        'index' => env('ELASTICSEARCH_INDEX', 'laravel'),
        'hosts' => [
            env('ELASTICSEARCH_HOST', 'http://localhost'),
        ],
    ],
...

Usage

  1. 如果你想使用highlight,在你的model中引入ScoutEngines\Elasticsearch\EsHighlight特性, (*8)

  2. es的index在model中通过方法esIndex动态设置,如果没有则取scout配置文件中的默认index, (*9)

Now you can use Laravel Scout as described in the official documentation, (*10)

Credits

License

The MIT License (MIT)., (*11)

The Versions

27/07 2018

dev-master

9999999-dev

Elastic Driver for Laravel Scout

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel elasticsearch elastic scout

27/07 2018

1.0.0

1.0.0.0

Elastic Driver for Laravel Scout

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel elasticsearch elastic scout