Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

An easy way to use the official Elastic Search 5.x-6.x client in your Laravel 5.

License

NotificationsYou must be signed in to change notification settings

fly-studio/laravel-scout-elasticsearch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

An easy way to use the official Elastic Search 5.x~6.x client in your Laravel 5.

Warning: This Manual is foraddons/elasticsearch:3.0.0,Elasticsearch 6.x. If you use the Elasticsearch 5.x, Please visit2.0.1

Version

  • addons/elasticsearch:1.0.2
    • Elasticsearch 5.x
    • Laravel/Scout 3.0
    • Laravel 5.1~5.5
  • addons/elasticsearch:2.0.1
    • Elasticsearch 5.x
    • Laravel/Scout 3.0~4.0
    • Laravel 5.1~5.6
  • addons/elasticsearch:3.0.0 - master
    • Elasticsearch 6.x
    • Laravel/Scout 4.0
    • Laravel 5.1~5.6

Difference

Elasticsearch 6.0 removes(deprecats) the TYPE. (like database's table)

So We use the ES's index namedenv('SCOUT_PREFIX').$mode->getTable() for each table

eg:

.env

SCOUT_PREFIX = my_application_name-

Index name like:

my_application_name-usersmy_application_name-roles

Example

Search like Laravel's Model

This Builder will search in ES, not Database.

User::search('must')->where('name', 'admin')->whereIn('type', ['1', '2'])->get();

Page

// page 1User::search()->where(...)->paginate(25);// page 4User::search()->where(...)->paginate(25, ['*'], 'page', 4)

Read/Modify the Elastic DSL JSON

User::search('must', function($elasticsearch, &$query){    print_r($query); // Show the DSL JSON    // ... edit the $query.})->where(...)->get();

Copyright and License

elasticsearchwas written byColin Viebrock,Fly and is released under theMIT License.

Copyright (c) 2016-2018

About

An easy way to use the official Elastic Search 5.x-6.x client in your Laravel 5.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors3

  •  
  •  
  •  

Languages


[8]ページ先頭

©2009-2025 Movatter.jp