|
From: Kouhei S. <ko...@cl...> - 2012-04-29 06:09:09
|
Hi, Groonga 2.0.2 has been released! http://groonga.org/docs/news.html#release-2-0-2 Install: http://groonga.org/docs/install.html Charcteristic: http://groonga.org/docs/characteristic.html Topics ------ There are three topics for this release: * The package sign key is changed * Supported similar search! * Added suggest page for administration page The package sign key is changed ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The package sign key is changed since this release. Here is the new sign key: % gpg --list-keys --fingerprint 45499429 pub 1024D/45499429 2012-04-28 Key fingerprint = C97E 4649 A205 1D0C EA1A 73F9 72A7 496B 4549 9429 uid groonga Key (groonga Official Signing Key) <pac...@gr...> If you have already installed groonga packages, you need to import the new key by the followings: Debian/Ubuntu: % sudo apt-get update % sudo apt-get -V -y install groonga-keyring CentOS/Fedora: % sudo yum update % sudo yum install --nogpgcheck -y groonga-repository Supported similar search! ^^^^^^^^^^^^^^^^^^^^^^^^^ Similar search has been supported since this release! Similar search had been implemented internally but you can’t use it by select command. You can use similar search by the following command: select --filter "column *S 'TEXT'" It means that groonga searches records that their document in column is similar to 'TEXT' . Added suggest page for administration page! ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Groonga has browser based administration tool. It supports suggest . Supported suggest feature is only search against existent suggest dataset for now. Other features like creating suggest dataset, learning, correcting learned data and so on aren’t supported yet. Changes ------- Improvements ^^^^^^^^^^^^ * [pkg-config] Removed needless MessagePack dependency. * [rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu] * [rpm] Supported zlib and LZO. [#1324] [Patch by IWAI, Masaharu] * [groonga] Improved daemoinzed timing. Groonga server daemonizes after socket is listened. It means that groonga server is ready when groonga server is daemonized. [#1326] * [admin] Supported suggest in groonga administration page. * [dump] Ignored MeCab tokenizer load error. * Supported CMake. * [load] Supported error report when a column value can't be set. * Supported similar search. ``select --filter "column *S 'TEXT'"`` is the similar search syntax. [#1342] * [apt][yum] Changed package sign key. * Supported Ubuntu Precise Pangolin. * [apt] Added a new groonga-keyring deb package for the groonga's package sign key. Fixes ^^^^^ * [deb][rpm] Used ``--bind-address`` option instead of deprecated ``--address`` option. [#1320] [Patch by IWAI, Masaharu] * [deb] Renamed groonga-server package's configuration file to /etc/default/groonga-server from /etc/default/groonga. * [rpm][fedora] Fixed upgrade condition in %post server. [GitHub#11] [Patch by Daiki Ueno] * [rpm] Removed needless change logs. [#1328] [Patch by IWAI, Masaharu] * [deb][rpm] Added missing curl dependency. [GitHub#12] [Patch by IWAI, Masaharu] * [rpm] Removed needleess ruby package dependency from groonga package. [#1330] [Suggested by IWAI, Masaharu] * [deb] Added missing default values to groonga-server's configuration file. * Fixed a crash bug that is caused when searching with updaging very large inverted index. [#1329] * Fixed a bug that strings are compared as characters instead of byte string. [#1340] [Reported by Shinya Kawaji] Thanks ^^^^^^ * IWAI, Masaharu * Daiki Ueno * Shinya Kawaji Thanks, -- kou |