ucaka / laravel-fulltext-rebuild
Rebuilds MySQL FULLTEXT indexes
Requires
- illuminate/console: 5.1.*|5.2.*|5.3.*|5.4.*
- illuminate/database: 5.1.*|5.2.*|5.3.*|5.4.*
- illuminate/support: 5.1.*|5.2.*|5.3.*|5.4.*
Requires (Dev)
- graham-campbell/testbench: ^3.3
- mockery/mockery: 0.9.*
- phpunit/phpunit: ^5.0
This package is not auto-updated.
Last update: 2024-11-10 03:26:00 UTC
README
This is a simple library for laravel that helps you rebuild fulltext indexes for MySQL.
This is useful when you change innodb_ft_min_token_size
property.
You can find more info about MySQL fulltext index length here
Always backup your database before doing manipulations to it.
Usage
You must include the library service provider inside config/app.php
$providers = [ ... Ucaka\FullTextRebuild\Providers\FullTextRebuildProvider::class, ]
The only thing that a service provider will do for you is register a command.
If you prefer you can skip the provider and directly add the command
\Ucaka\FullTextRebuild\Console\Commands\FullTextRebuild
inside your app/Console/Kernel.php
After you installed the command just run it
php artisan mysql:fulltext:rebuild
If it's needed you can specify custom database connection with --connection
or -c
option
php artisan mysql:fulltext:rebuild -c "custom_connection"