.. highlightlang:: none .. groonga-command .. table_remove Blog1 .. table_remove IndexBlog1 .. table_remove Blog2 .. table_remove IndexBlog2 match_columnsパラメータ ======================= 複数のカラムを対象とした全文検索 -------------------------------- groongaでは、複数のカラムを対象とした全文検索を行うことができます。例えば、ブログのテーブルで、タイトルと内容とがそれぞれ別のカラムに入ったものがあるとしましょう。「タイトルもしくは内容に特定の単語を含む」検索を行いたいとします。 この場合、2つのインデックス作成方式があります。1つは、それぞれのカラムに1つずつインデックスを付与する方式です。もう1つは、複数のカラムに対して1つのインデックスを付与する方式です。groongaでは、どちらの形式のインデックスが存在している場合でも、同一の記法で全文検索を行うことができます。 カラムごとにインデックスを付与する場合 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Blog1テーブルを作り、タイトル文字列のtitleカラム、本文のmessageカラムを追加しています。 インデックス用のIndexBlog1テーブルも作り、titleカラムのインデックス用にindex_titleカラム、messageカラムのインデック用にindex_messageカラムと、それぞれ1カラムごとに1つずつ追加しています。 .. groonga-command .. include:: ../example/tutorial07-1.log .. table_create --name Blog1 --flags TABLE_HASH_KEY --key_type ShortText .. column_create --table Blog1 --name title --flags COLUMN_SCALAR --type ShortText .. column_create --table Blog1 --name message --flags COLUMN_SCALAR --type ShortText .. table_create --name IndexBlog1 --flags TABLE_PAT_KEY|KEY_NORMALIZE --key_type ShortText --default_tokenizer TokenBigram .. column_create --table IndexBlog1 --name index_title --flags COLUMN_INDEX|WITH_POSITION --type Blog1 --source title .. column_create --table IndexBlog1 --name index_message --flags COLUMN_INDEX|WITH_POSITION --type Blog1 --source message .. load --table Blog1 .. [ .. {"_key":"grn1","title":"groonga test","message":"groonga message"}, .. {"_key":"grn2","title":"baseball result","message":"rakutan eggs 4 - 4 groonga moritars"}, .. {"_key":"grn3","title":"groonga message","message":"none"} .. ] match_columnsオプションで、検索対象のカラムを複数指定することが出来ます。検索する文字列はqueryオプションで指定します。これを使うことで、タイトルと本文を全文検索することができます。 実際に検索してみましょう。 .. groonga-command .. include:: ../example/tutorial07-2.log .. select --table Blog1 --match_columns title||message --query groonga .. select --table Blog1 --match_columns title||message --query message .. select --table Blog1 --match_columns title --query message 複数のカラムにまたがったインデックスを付与する場合 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 内容は上の例とほぼ同じですが、titleとmessageの2つのカラムに対するインデックスが共通になっており、インデックスカラムが1つしかありません。 共通のインデックスを用いても、titleカラムのみでの検索、messageカラムのみでの検索、titleもしくはmessageカラムでの検索、全ての検索を行うことができます。 .. groonga-command .. include:: ../example/tutorial07-3.log .. table_create --name Blog2 --flags TABLE_HASH_KEY --key_type ShortText .. column_create --table Blog2 --name title --flags COLUMN_SCALAR --type ShortText .. column_create --table Blog2 --name message --flags COLUMN_SCALAR --type ShortText .. table_create --name IndexBlog2 --flags TABLE_PAT_KEY|KEY_NORMALIZE --key_type ShortText --default_tokenizer TokenBigram .. column_create --table IndexBlog2 --name index_blog --flags COLUMN_INDEX|WITH_POSITION|WITH_SECTION --type Blog2 --source title,message .. load --table Blog2 .. [ .. {"_key":"grn1","title":"groonga test","message":"groonga message"}, .. {"_key":"grn2","title":"baseball result","message":"rakutan eggs 4 - 4 groonga moritars"}, .. {"_key":"grn3","title":"groonga message","message":"none"} .. ] 実際に検索してみましょう。結果は上の例と同じになります。 .. groonga-command .. include:: ../example/tutorial07-4.log .. select --table Blog2 --match_columns title||message --query groonga .. select --table Blog2 --match_columns title||message --query message .. select --table Blog2 --match_columns title --query message インデックス名を指定した全文検索 -------------------------------- 執筆中です。 .. TODO: match_columnsにインデックス名を指定しての検索についても触れる。 インデックスの重み ------------------ 執筆中です。 .. TODO: match_columnsの重み指定機能についても触れる。