定制 boxed-code/laravel-scout-database 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

boxed-code/laravel-scout-database

最新稳定版本:1.2

Composer 安装命令:

composer require boxed-code/laravel-scout-database

包简介

Generic database driver for laravel scout.

README 文档

README

Latest Stable Version Total Downloads License Tests

This is a basic database backed driver for Laravel Scout. It is intended for use during development to avoid the need to setup an elastic instance or agolia and instead uses your active database configuration.

Searchable model attributes are JSON encoded an placed in a text column for simplicity, the very primative 'like' operator is used to perform queries. It is fully functional supporting additional where clauses, etc. The driver deliberately avoides using free text queries & indexes as these are somewhat provider specific and would prevent the goal of it being able to operate with any architecture.

This driver is zero configuration, requiring you to only add the service provider & run the migration.

Requires Scout 8.x or 9.x and PHP >=7.2 or >=8.0

Installation

You can install the package via composer:

composer require boxed-code/laravel-scout-database

You must add the Scout service provider and the package service provider in your app.php config:

// config/app.php
'providers' => [
    ...
    Laravel\Scout\ScoutServiceProvider::class,
    ...
    BoxedCode\Laravel\Scout\DatabaseEngineServiceProvider::class,
],

Then run the migrations via the console

php artisan migrate

Usage

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

License

The MIT License (MIT).

统计信息

  • 总下载量: 44.5k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 11
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 11
  • Watchers: 2
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-07-07