Kouhei Sutou
null+****@clear*****
Mon Oct 12 23:02:37 JST 2015
Kouhei Sutou 2015-10-12 23:02:37 +0900 (Mon, 12 Oct 2015) New Revision: e0768f8c8069b0f79a4cc4e5bb20d7bd7def919c https://github.com/pgroonga/pgroonga.github.io/commit/e0768f8c8069b0f79a4cc4e5bb20d7bd7def919c Message: Translate news title Added files: _po/ja/news/index.po ja/news/index.md Added: _po/ja/news/index.po (+132 -0) 100644 =================================================================== --- /dev/null +++ _po/ja/news/index.po 2015-10-12 23:02:37 +0900 (42d52f9) @@ -0,0 +1,132 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2015-10-12 22:59+0900\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "" +"---\n" +"title: News\n" +"layout: en\n" +"---" +msgstr "" +"---\n" +"title: おしらせ\n" +"layout: ja\n" +"---" + +msgid "# News" +msgstr "# おしらせ" + +msgid "## 0.5.0: 2015-04-29" +msgstr "" + +msgid "" +"You can't upgrade to 0.5.0 from 0.4.0 without re-creating `pgroonga` index. Yo" +"u need to re-install PGroonga:" +msgstr "" + +msgid "" +"```sql\n" +"DROP EXTENSION pgroonga CASCADE;\n" +"CREATE EXTENSION pgroonga;\n" +"-- Create your pgroonga indexes again.\n" +"```" +msgstr "" + +msgid "### Improvements" +msgstr "" + +msgid "" +" * `pgroonga.score()`: Supported HOT update.\n" +" * Supported Ubuntu 15.04 Vivid Vervet.\n" +" * Supported Windows." +msgstr "" + +msgid "### Changes" +msgstr "" + +msgid " * `pgroonga.score()`: Required primary key." +msgstr "" + +msgid "## 0.4.0: 2015-03-29" +msgstr "" + +msgid "" +"You can't upgrade to 0.4.0 from 0.3.0 without re-creating `pgroonga` index. Yo" +"u need to re-install PGroonga:" +msgstr "" + +msgid "" +" * Supported `column LIKE '%keyword'` as a short cut of `column @@ 'keyword'`" +".\n" +" * Supported range search with multi-column index.\n" +" * Added PGroonga setup script on Travis CI. Add the following line to `insta" +"ll` section in your `.travis.yml`:" +msgstr "" + +msgid "" +" curl --silent --location https://github.com/pgroonga/pgroonga/raw/mast" +"er/data/travis/setup.sh | sh" +msgstr "" + +msgid "" +" * Added `pgroonga.table_name()` that returns table name in Groonga.\n" +" * Added `pgroonga.command()` that executes Groonga command line.\n" +" * Added `pgroonga.score()` that returns search score in Groonga.\n" +" * Supported `timestamp` type.\n" +" * Supported `timestamp with time zone` type.\n" +" * Supported `varchar[]` type.\n" +" * Supported full-text search for `text[]` type.\n" +" * Supported full-text search by index and other search by index in one `SELE" +"CT`.\n" +" * Added Yum repositories for CentOS 5 and 6." +msgstr "" + +msgid "" +" * Dropped `text == text` search by index. Use 4096 bytes or smaller `varchar" +"` instead.\n" +" * Dropped PostgreSQL 9.2 support." +msgstr "" + +msgid "## 0.3.0: 2015-02-09" +msgstr "" + +msgid "" +"You can't upgrade to 0.3.0 from 0.2.0 without re-creating `pgroonga` index. Yo" +"u need to re-install PGroonga:" +msgstr "" + +msgid "" +" * Supported encoding\n" +" * Supported customizing tokenizer and normalizer by `WITH` such as:" +msgstr "" + +msgid "" +" ```sql\n" +" CREATE INDEX pgroonga_index\n" +" ON table\n" +" USING pgroonga (column)\n" +" WITH (tokenizer='TokenMecab',\n" +" normalizer='NormalizerAuto');\n" +" ```" +msgstr "" + +msgid "" +" * Reduced needless locks.\n" +" * Supported column compression by LZ4.\n" +" * Supported non full-text search index such as text, numbers and timestamp." +msgstr "" + +msgid " * Changed database file base name to `pgrn` from `grn`." +msgstr "" + +msgid "## 0.2.0: 2015-01-29" +msgstr "" + +msgid "The first release!!!" +msgstr "" Added: ja/news/index.md (+158 -0) 100644 =================================================================== --- /dev/null +++ ja/news/index.md 2015-10-12 23:02:37 +0900 (80680ec) @@ -0,0 +1,158 @@ +--- +title: おしらせ +layout: ja +--- + +# おしらせ + +## 0.9.0: 2015-09-29 + +You can update to 0.9.0 from 0.8.0 by override install and executing the following SQL: + +```sql +ALTER EXTENSION pgroonga UPDATE; +``` + +You don't need to re-create `pgroonga` indexes. + +### Improvements + + * Supported `jsonb`. You can use `@>` operator like GIN index for `jsonb`. `@>` operator works like GIN index for `jsonb`. It's compatible. You can also use `@@` operator. It's PGroonga original operator. It's more flexible. + +## 0.8.0: 2015-09-01 + +You can update to 0.8.0 from 0.7.0 by override install. You don't need to re-create `pgroonga` indexes. + +### Improvements + + * Reduced needless loop on `VACUUM`. + * Reduced temporary memory usage. + * `pgroonga.log_path`: Added a variable that changes path for Groonga log. + * incompatible: Changed the path for Groonga log to the database directory by default. You can change it by `pgroonga.log_path`. + * `pgroonga.log_type`: Added a variable that changes how to log. + * Supported `TRUNCATE`-ed table. [GitHub:#1] [Reported by Hiroki Nakamura] + * `pgroonga.snippet_html()`: Added a function that generates snippet HTML. [groonga-dev,03398] [Reported by Hiroki Nakamura] + * Supported Ubuntu 14.04 LTS (Trusty Tahr). [Suggested by Yokoda Toshiaki] + * `pgroonga.lock_timeout`: Added a variable that changes the number of lock retries. [groonga-dev,03419] [Suggested by Naoki Takami] + +### Thanks + + * Hiroki Nakamura + * Yokoda Toshiaki + * Naoki Takami + +## 0.7.0: 2015-07-10 + +You can update to 0.6.0 from 0.5.0 by override install. You don't need to re-create `pgroonga` indexes. + +### Improvements + + * incompatible: Changed to use Groonga's default logger. Messages for PGroonga is logged to `pgroonga.log` in database directory instead of PostgreSQL's log path. + * `pgroonga.log_level`: Added a variable that changes log level. + +### Fixes + + * Fixed a bug that lexicon tables for dropped indexes aren't removed on `VACUUM`. + +## 0.6.0: 2015-05-29 + +You can update to 0.6.0 from 0.5.0 by override install. You don't need to re-create `pgroonga` indexes. + +### Improvements + + * `pgroonga.score()`: Supported HOT update on PostgreSQL 9.3. + * Supported log messages from Groonga. + * Stopped to try opening Groonga database when Groonga database path doesn't exist. + * Supported Debian GNU/Linux Jessie. + +### Fixes + + * Fixed a bug that large block number in ctid is overflowed. + +## 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