-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
blog: add an article about Groonga 14.0.2
- Loading branch information
Showing
2 changed files
with
65 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,36 @@ | ||
--- | ||
layout: post.en | ||
title: Groonga 14.0.2 has been released | ||
description: Groonga 14.0.2 has been released! | ||
--- | ||
|
||
## Groonga 14.0.2 has been released | ||
|
||
[Groonga 14.0.2](/docs/news/14.html#release-14-0-2) has been released! | ||
|
||
How to install: [Install](/docs/install.html) | ||
|
||
### Changes | ||
|
||
Here are important changes in this release: | ||
|
||
### Improvements | ||
|
||
* Reduced a log level of a log when Groonga setting normalizers/tokenizer/token_filters against temporary table. | ||
|
||
For example, the target log of this modification is the following log. | ||
|
||
``` | ||
DDL:1234567890:set_normalizers NormalizerAuto | ||
``` | ||
PGroonga sets normalizers against temporary table on start. So, this log becomes noise. Because this log become output when PGroonga start because of PGroonga’s default log level is `notice`. | ||
Therefore, we reduce log level to `debug` for the log since this release. Thus, this log does not output when PGroonga start in default. | ||
### Conclusion | ||
Please refert to the following news for more details. | ||
[News Release 14.0.2](/docs/news/14.html#release-14-0-2) | ||
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,29 @@ | ||
--- | ||
layout: post.ja | ||
title: Groonga 14.0.2リリース | ||
description: Groonga 14.0.2をリリースしました! | ||
--- | ||
|
||
## Groonga 14.0.2リリース | ||
|
||
[Groonga 14.0.2](/ja/docs/news/14.html#release-14-0-2)をリリースしました! | ||
|
||
それぞれの環境毎のインストール方法: [インストール](/ja/docs/install.html) | ||
|
||
### 変更内容 | ||
|
||
主な変更点は以下の通りです。 | ||
|
||
### 改良 | ||
|
||
* 一時テーブルに対して、normalizers/tokenizer/token_filtersを設定したときに出力されるログのログレベルを下げました。 | ||
|
||
例えば、この変更の対象のログは以下のようなログです。 | ||
|
||
``` | ||
DDL:1234567890:set_normalizers NormalizerAuto | ||
``` | ||
PGroongaは起動時に一時テーブルに対してノーマライザーを設定するため、このログがノイズになっていました。このログのログレベルは`notice`なので、PGroonga起動時にこのログが出力されてしまうためです。 | ||
そのため、今回のリリースからこのようなログのログレベルを`debug`にしました。これにより、デフォルトでは、PGroonga起動時にこのログが出力されないようになります。 |