null+****@clear*****
null+****@clear*****
2010年 9月 21日 (火) 00:54:43 JST
Kouhei Sutou 2010-09-20 15:54:43 +0000 (Mon, 20 Sep 2010) New Revision: e0ff71fdc3a9e52d1dbe02393c5b330c3548946a Log: add a troubleshooting about search. (just template) Added files: doc/ja/source/troubleshooting.txt doc/ja/source/troubleshooting/different_results_with_the_same_keyword.txt Modified files: doc/ja/source/index.txt doc/ja/source/search.txt Modified: doc/ja/source/index.txt (+1 -0) =================================================================== --- doc/ja/source/index.txt 2010-09-20 04:39:47 +0000 (9b6d508) +++ doc/ja/source/index.txt 2010-09-20 15:54:43 +0000 (2ea19a7) @@ -14,6 +14,7 @@ groonga ドキュメント install tutorial reference + troubleshooting developer * :ref:`genindex` Modified: doc/ja/source/search.txt (+0 -7) =================================================================== --- doc/ja/source/search.txt 2010-09-20 04:39:47 +0000 (bed700f) +++ doc/ja/source/search.txt 2010-09-20 15:54:43 +0000 (8b57da4) @@ -113,10 +113,3 @@ groongaは基本的に完全一致検索のみを行います。完全一致検 select Shops --filter '"point > 3 && description @ \"スープカレー\""' そのため、descriptionに「スープカレーライス」が含まれていても、「スープカレーライス」は「スープカレー」に完全一致しないのでヒットしません。 - - -問題 ----- - -対策 ----- Added: doc/ja/source/troubleshooting.txt (+10 -0) 100644 =================================================================== --- /dev/null +++ doc/ja/source/troubleshooting.txt 2010-09-20 15:54:43 +0000 (fc2f4e6) @@ -0,0 +1,10 @@ +.. highlightlang:: none + +トラブルシューティング +==================== + +.. toctree:: + :maxdepth: 2 + :glob: + + troubleshooting/* Added: doc/ja/source/troubleshooting/different_results_with_the_same_keyword.txt (+33 -0) 100644 =================================================================== --- /dev/null +++ doc/ja/source/troubleshooting/different_results_with_the_same_keyword.txt 2010-09-20 15:54:43 +0000 (d2723e3) @@ -0,0 +1,33 @@ +.. highlightlang:: none + +.. _different_results_with_the_same_keyword: + +同じ検索キーワードなのに全文検索結果が異なる +========================================= + +同じ検索キーワードでも一緒に指定するクエリによっては全文検索の結果が異なることがあります。ここでは、その原因と対策方法を説明します。 + +例 +-- + +まず、実際に検索結果が異なる例を説明します。 + +原因 +---- + +TODO + +対策方法1: トークナイザーを指定する +--------------------------------- + +TokenBigramSplitSymbolAlphaトークナイザーを指定する。 + +TODO + +対策方法2: 閾値をあげる +---------------------- + +--with-query-escalation-threshold configureオプションを指定する。 + +TODO +