PGroonga 1.2.0 - Make PostgreSQL fast full text search platform for all languages

From: Kouhei Sutou <kou(at)clear-code(dot)com>
To: pgsql-announce(at)postgresql(dot)org
Subject: PGroonga 1.2.0 - Make PostgreSQL fast full text search platform for all languages
Date: 2017-04-29 04:20:54
Message-ID: 20170429.132054.166114496397725521.kou@clear-code.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-announce

Hi,

PGroonga 1.2.0 has been released!

http://groonga.org/en/blog/2017/04/29/pgroonga-1.2.0.html

### About PGroonga

https://pgroonga.github.io/

PGroonga is a PostgreSQL extension that makes PostgreSQL
fast full text search platform for all languages!
It's released under PostgreSQL license.

There are some PostgreSQL extensions that improves full text
search feature of PostgreSQL such as pg_trgm(*1).

(*1) https://www.postgresql.org/docs/current/static/pgtrgm.html

pg_trgm doesn't support languages that use non-alphanumerics
characters such as Japanese and Chinese.

PGroonga supports all languages, provides rich full text
search related features and is very fast. Because PGroonga
uses Groonga(*2) that is a full-fledged full text search
engine as backend.

(*2) http://groonga.org/

See the following benchmark results for performance:

* Benchmark result for PGroonga, textsearch and pg_trgm with English Wikipedia
https://pgroonga.github.io/reference/pgroonga-versus-textsearch-and-pg-trgm.html
* Benchmark result for PGroonga and pg_bigm with Japanese Wikipedia
https://pgroonga.github.io/reference/pgroonga-versus-pg-bigm.html

PGroonga also supports JSON search. You can use each value
for condition. You can also perform full text search against
all texts in JSON. No other extension such as JsQuery(*3)
doesn't provide full text search feature against JSON.

(*3) https://github.com/postgrespro/jsquery

### Users

Here are PGroonga users:

* Zulip: https://zulip.org/
* Powerful open source group chat by Dropbox

https://pgroonga.github.io/users/

### Changes

Here are highlights of PGroonga 1.2.0:

* Improve replication

* Support token filters and plugins

* Add auto PGroonga index recovery

* Prepare for painless 2.0.0 upgrade

See the following release announce URL for details:

http://groonga.org/en/blog/2017/04/29/pgroonga-1.2.0.html

### Usage

You can use PGroonga without full text search knowledge. You
just create an index and puts a condition into WHERE:

CREATE INDEX index_name ON table USING pgroonga (column);

SELECT * FROM table WHERE column @@ 'PostgreSQL';

You can also use LIKE to use PGroonga. PGroonga provides a
feature that performs LIKE with index. LIKE with PGroonga
index is faster than LIKE without index. It means that you
can improve performance without changing your application
that uses the following SQL:

SELECT * FROM table WHERE column LIKE '%PostgreSQL%';

Are you interested in PGroonga? Please install(*4) and try
tutorial(*5). You can know all PGroonga features.

(*4) https://pgroonga.github.io/install/
(*5) https://pgroonga.github.io/tutorial/

You can install PGroonga easily. Because PGroonga provides
packages for major platforms. There are binaries for
Windows.

Thanks,
--
kou

Browse pgsql-announce by date

  From Date Subject
Next Message David Fetter 2017-04-30 22:19:36 == PostgreSQL Weekly News - April 30 2017 ==
Previous Message Bo Peng 2017-04-28 06:53:33 Pgpool-II 3.6.3, 3.5.7, 3.4.11, 3.3.15, 3.2.20 and pgpoolAdmin 3.6.1 are now officially released.