Kouhei Sutou
null+****@clear*****
Sun May 24 19:04:19 JST 2015
Kouhei Sutou 2015-05-24 19:04:19 +0900 (Sun, 24 May 2015) New Revision: e30b1c8e17f1c8ebad8bb03d9562f3264b0d8a09 https://github.com/pgroonga/pgroonga.github.io/commit/e30b1c8e17f1c8ebad8bb03d9562f3264b0d8a09 Message: Add news/ Added files: news/index.md Modified files: index.md Modified: index.md (+1 -4) =================================================================== --- index.md 2015-05-24 18:54:03 +0900 (a5e1100) +++ index.md 2015-05-24 19:04:19 +0900 (0df8707) @@ -16,10 +16,6 @@ layout: en </p> </div> -## リリース情報 - -[news.md](https://github.com/pgroonga/pgroonga/blob/master/news.md)を参照してください。 - ## PGroongaとは PGroonga(ぴーじーるんが)はPostgreSQLからインデックスとして @@ -30,6 +26,7 @@ PostgreSQLは標準では日本語で全文検索できませんが、PGroonga ## ドキュメント + * [News](news/) : Release information. * [Overview](overview/) : PGroongaの概要です。 * [Install](install/) : PGroongaのインストール手順の説明です。 * [Tutorial](tutorial/) : PGroongaの使い方を実例を通して解説します。 Added: news/index.md (+94 -0) 100644 =================================================================== --- /dev/null +++ news/index.md 2015-05-24 19:04:19 +0900 (06f16f2) @@ -0,0 +1,94 @@ +--- +title: News +layout: en +--- + +# News + +## 0.5.0: 2015-04-29 + +You can't upgrade to 0.5.0 from 0.4.0 without re-creating `pgroonga` index. You need to re-install PGroonga: + +```sql +DROP EXTENSION pgroonga CASCADE; +CREATE EXTENSION pgroonga; +-- Create your pgroonga indexes again. +``` + +### Improvements + + * `pgroonga.score()`: Supported HOT update. + * Supported Ubuntu 15.04 Vivid Vervet. + * Supported Windows. + +### Changes + + * `pgroonga.score()`: Required primary key. + +## 0.4.0: 2015-03-29 + +You can't upgrade to 0.4.0 from 0.3.0 without re-creating `pgroonga` index. You need to re-install PGroonga: + +```sql +DROP EXTENSION pgroonga CASCADE; +CREATE EXTENSION pgroonga; +-- Create your pgroonga indexes again. +``` + +### Improvements + + * Supported `column LIKE '%keyword'` as a short cut of `column @@ 'keyword'`. + * Supported range search with multi-column index. + * Added PGroonga setup script on Travis CI. Add the following line to `install` section in your `.travis.yml`: + + curl --silent --location https://github.com/pgroonga/pgroonga/raw/master/data/travis/setup.sh | sh + + * Added `pgroonga.table_name()` that returns table name in Groonga. + * Added `pgroonga.command()` that executes Groonga command line. + * Added `pgroonga.score()` that returns search score in Groonga. + * Supported `timestamp` type. + * Supported `timestamp with time zone` type. + * Supported `varchar[]` type. + * Supported full-text search for `text[]` type. + * Supported full-text search by index and other search by index in one `SELECT`. + * Added Yum repositories for CentOS 5 and 6. + +### Changes + + * Dropped `text == text` search by index. Use 4096 bytes or smaller `varchar` instead. + * Dropped PostgreSQL 9.2 support. + +## 0.3.0: 2015-02-09 + +You can't upgrade to 0.3.0 from 0.2.0 without re-creating `pgroonga` index. You need to re-install PGroonga: + +```sql +DROP EXTENSION pgroonga CASCADE; +CREATE EXTENSION pgroonga; +-- Create your pgroonga indexes again. +``` + +### Improvements + + * Supported encoding + * Supported customizing tokenizer and normalizer by `WITH` such as: + + ```sql + CREATE INDEX pgroonga_index + ON table + USING pgroonga (column) + WITH (tokenizer='TokenMecab', + normalizer='NormalizerAuto'); + ``` + + * Reduced needless locks. + * Supported column compression by LZ4. + * Supported non full-text search index such as text, numbers and timestamp. + +### Changes + + * Changed database file base name to `pgrn` from `grn`. + +## 0.2.0: 2015-01-29 + +The first release!!! -------------- next part -------------- HTML����������������������������...Download