如何创建列的全文索引?

时间:2016-10-29 05:07:35

标签: php mysql laravel

这是我目前的迁移:

class News extends Migration
{
    public function up()
    {
        Schema::create('News', function (Blueprint $table) {
            $table->increments('id');
            $table->string('title');
            $table->text('description');
            $table->integer('user_id')->unsigned()->index();
            $table->string('imgPath')->nullable();
            $table->timestamps();
        });
    }

    public function down()
    {
        Schema::drop('News');
    }
}

现在,我需要分别对这些列制作全文索引:title description。所以我正在寻找这样的事情:->fulltext()。但是我在Laravel文档中找不到类似的东西。

反正

  1. 如何在迁移中的单个列上创建全文索引?喜欢:(title)
  2. 另外,对于我的信息,如何在迁移中的多个列上创建复合全文索引?喜欢:(title, description)
  3. 注意:我想要一个允许我像这样搜索的intex:. . . match(col) against('value')

1 个答案:

答案 0 :(得分:11)

Laravel不支持FULLTEXT搜索。 但您可以将原始查询用作:

DB::statement('ALTER TABLE News ADD FULLTEXT search(title, description)');

注意 - 如果您不使用MySQL 5.6+,我们必须将数据库引擎设置为MyISAM而不是InnoDB。

$table->engine = 'MyISAM'; // means you can't use foreign key constraints

搜索时,您可以这样做:

$q = Input::get('query');

->whereRaw("MATCH(title,description) AGAINST(? IN BOOLEAN MODE)", array($q))