teamtnt/laravel-scout-tntsearch-driver
Composer 安装命令:
composer require teamtnt/laravel-scout-tntsearch-driver
包简介
Driver for Laravel Scout search package based on https://github.com/teamtnt/tntsearch
关键字:
README 文档
README
This package makes it easy to add full text search support to your models with Laravel 5.3 to 13.0.
Premium products
If you find TNT Search to be one of your valuable assets, take a look at one of our premium products
Support us on Open Collective
Contents
Installation
You can install the package via composer:
composer require teamtnt/laravel-scout-tntsearch-driver
For Laravel 11+, add the Scout and TNTSearch service providers to bootstrap/providers.php:
return [ App\Providers\AppServiceProvider::class, // ... Laravel\Scout\ScoutServiceProvider::class, TeamTNT\Scout\TNTSearchScoutServiceProvider::class, ];
For earlier versions of Laravel, add the service provider as follows:
// config/app.php 'providers' => [ // ... Laravel\Scout\ScoutServiceProvider::class, TeamTNT\Scout\TNTSearchScoutServiceProvider::class, ],
Add SCOUT_DRIVER=tntsearch to your .env file
Then you should publish scout.php configuration file to your config directory
php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"
In your config/scout.php add:
'tntsearch' => [ 'storage' => storage_path(), //place where the index files will be stored 'fuzziness' => env('TNTSEARCH_FUZZINESS', false), 'fuzzy' => [ 'prefix_length' => 2, 'max_expansions' => 50, 'distance' => 2, 'no_limit' => true ], 'asYouType' => false, 'searchBoolean' => env('TNTSEARCH_BOOLEAN', false), 'maxDocs' => env('TNTSEARCH_MAX_DOCS', 500), 'stopwords' => [], //words to exclude from the index, e.g. ['a', 'the', 'in'] ],
The stopwords option lets you exclude common words (articles, prepositions) from
being indexed, so a search for e.g. "inns" won't fuzzy-match documents that merely
contain "in". Note that stopwords are applied at indexing time, so you need to
reimport your models after changing them.
To prevent your search indexes being commited to your project repository,
add the following line to your .gitignore file.
/storage/*.index
The asYouType option can be set per model basis, see the example below.
Usage
After you have installed scout and the TNTSearch driver, you need to add the
Searchable trait to your models that you want to make searchable. Additionaly,
define the fields you want to make searchable by defining the toSearchableArray method on the model:
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Laravel\Scout\Searchable; class Post extends Model { use Searchable; public $asYouType = true; /** * Get the indexable data array for the model. * * @return array */ public function toSearchableArray() { $array = $this->toArray(); // Customize array... return $array; } }
Then, sync the data with the search service like:
php artisan scout:import App\\Post
If you have a lot of records and want to speed it up you can run (note that with this you can no longer use model-relations in your toSearchableArray()):
php artisan tntsearch:import App\\Post
After that you can search your models with:
Post::search('Bugs Bunny')->get();
Scout status
php artisan scout:status
With this simple command you'll get a quick overview of your search indices.
Or you can pass a searchable model argument:
php artisan scout:status "App\Models\Post"
If your models are not in the default location app or one of its subdirectories, you may set the modelPath option
// config/scout.php 'tntsearch' => [ // ... 'modelPath' => 'models', ],
Constraints
Additionally to where() statements as conditions, you're able to use Eloquent queries to constrain your search. This allows you to take relationships into account.
If you make use of this, the search command has to be called after all queries have been defined in your controller.
The where() statements you already know can be applied everywhere.
namespace App\Http\Controllers; use App\Post; class PostController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index(Request $request) { $post = new Post; // filter out posts to which the given topic is assigned if($request->topic) { $post = $post->whereNotIn('id', function($query){ $query->select('assigned_to')->from('comments')->where('topic','=', request()->input('topic')); }); } // only posts from people that are no moderators $post = $post->byRole('moderator','!='); // when user is not admin filter out internal posts if(!auth()->user()->hasRole('admin')) { $post= $post->where('internal_post', false); } if ($request->searchTerm) { $constraints = $post; // not necessary but for better readability $post = Post::search($request->searchTerm)->constrain($constraints); } $post->where('deleted', false); $post->orderBy('updated_at', 'asc'); $paginator = $post->paginate(10); $posts = $paginator->getCollection(); // return posts } }
Adding via Query
The searchable() method will chunk the results of the query and add the records to your search index.
$post = Post::find(1); // You may also add record via collection... $post->searchable(); // OR $posts = Post::where('year', '>', '2018')->get(); // You may also add records via collections... $posts->searchable();
When using constraints apply it after the constraints are added to the query, as seen in the above example.
OrderBy
An orderBy() statement can now be applied to the search query similar to the where() statement.
When using constraints apply it after the constraints are added to the query, as seen in the above example.
Sponsors
Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]
Credits
Contributors
This project exists thanks to all the people who contribute.
Backers
Thank you to all our backers! 🙏 [Become a backer]
teamtnt/laravel-scout-tntsearch-driver 适用场景与选型建议
teamtnt/laravel-scout-tntsearch-driver 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.63M 次下载、GitHub Stars 达 1.14k, 最近一次更新时间为 2016 年 08 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「search」 「laravel」 「tntsearch」 「scout」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 teamtnt/laravel-scout-tntsearch-driver 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 teamtnt/laravel-scout-tntsearch-driver 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 teamtnt/laravel-scout-tntsearch-driver 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Laravel package to retrieve data from Google Search Console
Indexed Search Autocomplete - Extends the TYPO3 Core Extension Indexed_Search searchform with an autocomplete feature.
Abstraction Layer to index and search entities
Pimcore 10.x Website Indexer (powered by Zend Search Lucene)
Symfony bundle for Elasticsearch integration with round-robin load balancing
A universal search system for App-UI
统计信息
- 总下载量: 2.63M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1140
- 点击次数: 18
- 依赖项目数: 37
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-15