= PHPで\nPostgreSQLと\nPGroongaを使って\n高速日本語全文検索! : author 須藤功平 : institution クリアコード : content-source 第115回 PHP勉強会@東京 : date 2017-06-28 : allotted-time 20m : theme . = PostgreSQLと全文検索 * LIKE:組込機能 * textsearch:組込機能 * pg_trgm:標準添付 * アーカイブには含まれている * 別途インストールすれば使える = LIKE * 少ないデータ * 十分実用的 * 400文字×20万件くらいなら1秒とか * 少なくないデータ * 性能問題アリ = textsearch * インデックスを作るので速い * 言語毎にモジュールが必要 * 英語やフランス語などは組込 * 日本語は別途必要 * 日本語用モジュール * 公式にはメンテナンスされていない\n (('note:forkして動くようにしている人はいる')) = pg_trgm * インデックスを作るので速い * 注:ヒット件数が増えると遅い * 注:テキスト量が多いと遅い * 注:1,2文字の検索は遅い(('note:(米・日本)')) * 日本語を使うにはひと工夫必要 * C.UTF-8を使う * ソースを変更してビルド = プラグイン * pg_bigm * pg_trgmの日本語対応強化版 * PGroonga * 本気の全文検索エンジンを利用 * 速いし日本語もバッチリ! = ベンチマーク:pg_bigm # image # src = images/search-pg-bigm.pdf # relative_height = 100 = ベンチマーク:PGroonga # image # src = images/search-pgroonga-pg-bigm.pdf # relative_height = 100 = よし! * PostgreSQLとPGroongaを使って * 高速日本語全文検索サービスを * PHPで作ろう! = PHP document search # image # src = images/php-document-search.png # relative_height = 100 = 機能 * 検索キーワードハイライト * キーワード周辺テキスト表示 * オートコンプリート * ローマ字対応(seiki→正規表現) = 作り方:ツール * フレームワーク * Laravel * RDBMS * PostgreSQL * 高速日本語全文検索機能 * PGroonga = 作り方:インストール * Laravel * 省略 * PostgreSQL * パッケージで * PGroonga * パッケージで\n (('tag:x-small:https://pgroonga.github.io/ja/install/')) = 初期化:Laravel # coderay console % laravel new php-document-search % cd php-document-search % editor .env = 初期化:データベース # coderay console % sudo -u postgres -H \ createdb php_document_search = 初期化:PGroonga # rouge sql -- ↓を実行する必要がある CREATE EXTENSION pgroonga; = 初期化:PGroonga (('tag:center')) マイグレーションファイル作成 # coderay console % php artisan \ make:migration enable_pgroonga = マイグレーション # coderay php public function up() { DB::statement("CREATE EXTENSION pgroonga;"); } public function down() { DB::statement("DROP EXTENSION pgroonga;"); } = モデル作成 * ドキュメントはモデル * 名前:((%Entry%)) * 1ページ1インスタンス = モデル作成 # coderay console % php artisan \ make:model \ --migration \ --controller \ --resource \ Entry = マイグレーション # coderay php public function up() { Schema::create('entries', function ($table) { $table->increments('id'); table->text('url'); $table->text('title'); $table->text('content'); // PGroonga用インデックス。デフォルトで全文検索用。 // 主キー(id)も入れるのが大事!スコアー取得に必要。 $table->index( ['id', 'title', 'content'], null, 'pgroonga'); }); } = データ登録 (1) PHPのドキュメントを\n ローカルで生成 * PHPのドキュメントの作り方\n http://doc.php.net/tutorial/ * フィードバックチャンスがいろいろあったよ!(後述) (2) ページ毎にPostgreSQLに挿入 = コマンド作成 # coderay console % php artisan \ make:command \ --command=doc:register \ RegisterDocuments = 登録コマンド実装(一部) # coderay php public function handle() { foreach (glob("public/doc/*.html") as $html_path) { $document = new \DOMDocument(); @$document->loadHTMLFile($html_path); $xpath = new \DOMXPath($document); $entry = new Entry(); $entry->url = "/doc/" . basename($html_path); // XPathでテキスト抽出 $this->extract_title($entry, $xpath); $this->extract_content($entry, $xpath); $entry->save(); } } = 登録 # coderay console % php artisan doc:register = 検索用コントローラー # coderay php public function index(Request $request) { $query = $request['query']; $entries = Entry::query() // ↓はモデルに作る(後述) ->fullTextSearch($query) ->limit(10) ->get(); return view('entry.search.index', [ 'entries' => $entries, 'query' => $query, ]); } = 検索対象モデル # coderay php public function scopeFullTextSearch($query, $search_query) { if ($search_query) { return ...; // クエリーがあったら検索 } else { return ...; // なかったら適当に返す(省略) } } = 検索対象モデル:検索 # coderay php return $query ->select('id', 'url') // 適合度をスコアーとして返す ->selectRaw('pgroonga.score(entries) AS score') // キーワードハイライト ->highlightHTML('title', $search_query) // キーワード周辺のテキスト(キーワードハイライト付き) ->snippetHTML('content', $search_query) // タイトルと本文を全文検索(後で補足) ->whereRaw('title @@ ? OR content @@ ?', [$search_query, $search_query]) // それっぽい文書の順に返す ->orderBy('score', 'DESC'); = キーワードハイライト # coderay php public function scopeHighlightHTML($query, $column, $search_query) { return $query // PGroonga提供ハイライト関数 ->selectRaw("pgroonga.highlight_html($column, " . // PGroonga提供クエリーからキーワードを抽出する関数 "pgroonga.query_extract_keywords(?)) " . "AS highlighted_$column", [$search_query]); } = 検索結果 # coderay php
{!! $snippet !!}@endforeach @endforeach