Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from groonga/add-release-info-8.0.7
Add release information of 8.0.7
- Loading branch information
Showing
2 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| --- | ||
| layout: post.en | ||
| title: Groonga 8.0.7 has been released | ||
| description: Groonga 8.0.7 has been released! | ||
| --- | ||
|
|
||
| ## Groonga 8.0.7 has been released | ||
|
|
||
| [Groonga 8.0.7](/docs/news.html#release-8-0-7) has been released! | ||
|
|
||
| How to install: [Install](/docs/install.html) | ||
|
|
||
| ### Changes | ||
|
|
||
| Here are important changes in this release: | ||
|
|
||
| * New options for the TokenMecab tokenizer. | ||
| * New options for the TokenNgram tokenizer. | ||
| * Groonga now can grab plugins from multiple directories. | ||
|
|
||
| #### New options for the TokenMecab tokenizer | ||
|
|
||
| [TokenMecab](/docs/reference/tokenizers#tokenmecab) now accepts these new options: | ||
|
|
||
| * `include_class`: outputs Mecab's metadata `class` and `subclass`. | ||
| * `include_reading`: outputs Mecab's metadata `reading`. | ||
| * `include_form`: outputs Mecab's metadata `inflected_type`, `inflected_form`, and `base_form`. | ||
| * `use_reading`: allows to search terms by corresponding reading written in kana. | ||
| This option will help you to search orthographical variants by kana. | ||
|
|
||
| For more details, see the [reference](/docs/reference/tokenizers#tokenmecab). | ||
|
|
||
| # New options for the TokenNgram tokenizer | ||
|
|
||
| [TokenNgram](/docs/reference/tokenizers#tokenngram) now accepts these new options: | ||
|
|
||
| * `unify_alphabet`: `TokenNgram("unify_alphabet", false)` will work same as `TokenBigramSplitAlpha`. | ||
| * `unify_symbol`: `TokenNgram("unify_symbol", false)` will work same as `TokenBigramSplitSymbol`. | ||
| * `unify_digit`: `TokenNgram("unify_digit", false)` will work same as `TokenBigramSplitDigit`. | ||
|
|
||
| For more details, see the [reference](/docs/reference/tokenizers#tokenngram). | ||
|
|
||
| # Groonga now can grab plugins from multiple directories | ||
|
|
||
| A new environent variable `GRN_PLUGINS_PATH` is available to detect plugins from multiple directories. | ||
| It is a list of path to directories, separated with `;` (on Windows) or `:` (on other platforms). | ||
|
|
||
| `GRN_PLUGINS_PATH` has priority higher than the existing `GRN_PLUGINS_DIR`. | ||
|
|
||
| Note that this does not work on Windows currently. | ||
|
|
||
| ### Conclusion | ||
|
|
||
| See [Release 8.0.7 2018-08-29](/docs/news.html#release-8-0-7) about detailed changes since 8.0.6 | ||
|
|
||
| Let's search by Groonga! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| --- | ||
| layout: post.ja | ||
| title: Groonga 8.0.7リリース | ||
| description: Groonga 8.0.7をリリースしました! | ||
| --- | ||
|
|
||
| ## Groonga 8.0.7リリース | ||
|
|
||
| 肉の日ですね。[Groonga 8.0.7](/ja/docs/news.html#release-8-0-7)をリリースしました! | ||
|
|
||
| それぞれの環境毎のインストール方法: [インストール](/ja/docs/install.html) | ||
|
|
||
| ### 変更内容 | ||
|
|
||
| 主な変更点は以下の通りです。 | ||
|
|
||
| * トークナイザーのTokenMecabに新しいオプションを追加しました。 | ||
| * トークナイザーのTokenNgramに新しいオプションを追加しました。 | ||
| * 複数のディレクトリからのプラグインの検出に対応しました。 | ||
|
|
||
| #### トークナイザーのTokenMecabに新しいオプションを追加しました | ||
|
|
||
| [TokenMecab](/docs/reference/tokenizers#tokenmecab)に以下のオプションが加わりました。 | ||
|
|
||
| * `include_class`: Mecabのメタ情報のうち `class` と `subclass` を出力します。 | ||
| * `include_reading`: Mecabのメタ情報のうち `reading` を出力します。 | ||
| * `include_form`: Mecabのメタ情報のうち `inflected_type`、`inflected_form`、および `base_form` を出力します。 | ||
| * `use_reading`: かな表記の読みがなによる単語の検索を可能にします。 | ||
| このオプションは表記揺れのかなでの検索に役立ちます。 | ||
|
|
||
| 詳細は[リファレンス](/docs/reference/tokenizers#tokenmecab)を併せて参照して下さい。 | ||
|
|
||
| # トークナイザーのTokenNgramに新しいオプションを追加しました | ||
|
|
||
| [TokenNgram](/docs/reference/tokenizers#tokenngram)に以下のオプションが加わりました。 | ||
|
|
||
| * `unify_alphabet`: `TokenNgram("unify_alphabet", false)` は `TokenBigramSplitAlpha` と同様に働きます。 | ||
| * `unify_symbol`: `TokenNgram("unify_symbol", false)` は `TokenBigramSplitSymbol` と同様に働きます。 | ||
| * `unify_digit`: `TokenNgram("unify_digit", false)` は `TokenBigramSplitDigit` と同様に働きます。 | ||
|
|
||
| 詳細は[リファレンス](/docs/reference/tokenizers#tokenngram)を併せて参照して下さい。 | ||
|
|
||
| # 複数のディレクトリからのプラグインの検出に対応しました | ||
|
|
||
| 複数のディレクトリからプラグインを認識するために、新しい環境変数 `GRN_PLUGINS_PATH` での指定を受け付けるようにしました。 | ||
| 値はディレクトリへのパスのリストで、`;`区切り(Windows)または`:`区切り(それ以外のプラットフォーム)です。 | ||
|
|
||
| `GRN_PLUGINS_PATH` は既存の `GRN_PLUGINS_DIR` よりも優先的に認識されます。 | ||
|
|
||
| この機能は現在の所Windowsでは利用できません。 | ||
|
|
||
| ### さいごに | ||
|
|
||
| 8.0.6からの詳細な変更点は[8.0.7リリース 2018-08-29](/ja/docs/news.html#release-8-0-7)を確認してください。 | ||
|
|
||
| それでは、Groongaでガンガン検索してください! |