|
From: HAYASHI K. <ha...@cl...> - 2013-06-29 03:31:36
|
Hi, Mroonga 3.05 has been released! http://mroonga.org/docs/news.html#release-3-05 Document: http://mroonga.org/docs/ Install: http://mroonga.org/docs/install.html Mroonga is a MySQL storage engine that supports fast fulltext search and geolocation search. It is CJK ready. It uses groonga as a storage and fulltext search engine. See following URL about upgrade sequence if you use previous version. If you upgrade prior to 1.20, refer to following document: http://mroonga.org/docs/news.html#release-1-20 If you upgrade from 1.20, refer to following document: http://mroonga.org/docs/news.html#release-2-00 If you upgrade from 2.00 or 2.01, refer to following document: http://mroonga.org/docs/news.html#release-2-02 If you upgrade from 2.00 or later and using multiple column indexes on storage mode, refer to following document: http://mroonga.org/docs/news.html#release-2-03 If you upgrade from 2.04 or later and using SET column or ENUM that has the number of elements < 256 in Storage mode: http://mroonga.org/docs/news.html#release-2-05 If you upgrade from 2.05 or later and using multiple column indexes against VARCHAR or CHAR, refer to following document: http://mroonga.org/docs/news.html#release-2-08 If you upgrade from 2.08 or later and using TIMESTAMP column, please recreate database. If you upgrade from 2.08 or later and using CHAR(N) as primary key, please recreate index. Refer to following documentation for each case: http://mroonga.org/docs/news.html#release-2-09 Topics ====== There are topics for this release: * Supported MariaDB bundled mroonga for Windows * Supported to enable fast mutexes option by build configuration Supported MariaDB bundled mroonga for Windows --------------------------------------------- There is no release for Windows for a long time. But, we began to support windows binary experimentally. It has been needed to modify a part of source code, We provides package as a MariaDB bundled mroonga. Download 32bit/64bit binary from following URL: 64bit: http://packages.groonga.org/windows/mroonga/mariadb-10.0.3-with-mroonga-3.05-winx64.zip 32bit: http://packages.groonga.org/windows/mroonga/mariadb-10.0.3-with-mroonga-3.05-win32.zip Supported to enable fast mutexes option by build configuration -------------------------------------------------------------- In this release, we began to support to enable fast mutexes by build configuration. There is nothing to do with you if you use groonga official packages only, but there is a case that you want to use mroonga with fast mutexes enabled MySQL packages which is provided other repository. Note that mixed fast mutexes with/without configured packages make MySQL crash. How to enable fast mutexes by configure: ./configure --enable-fast-mutexes How to enable fast mutexes by cmake: cmake -DWITH_FAST_MUTEXES=on Changes ======= Improvements ^^^^^^^^^^^^ * Added warnings for truncated date data. [#1768] [Suggested by Y.Kentaro] * Supported MySQL 5.6.12. [Reported by WING] * Added documentation about Trouble Shooting. * Supported to enable fast mutexes option by build configuration. [#1760] [Reported by WING] Fixes ^^^^^ * Fixed a bug that three or more sections in W pragma doesn't work. [#1770] [Reported by shizuin] * Fixed build error with "-O2". [Reported by Y.Kentaro] * Fixed a memory leak by re-registration of normalizers/mysql. * Fixed a crush bug when updating with DISABLE KEYS. [#1759] * [doc] Fixed a wrong translation about status variable of optimization in wrapper mode. [Reported by YOSHIDA Mitsuo] * Fixed a crush bug when no where clause with ORDER BY ... LIMIT is specified. [Reported by @memorycraft] * Fixed a bug that data is hidden when LOCK TABLES and ENABLE KEYS are used same time. [#1778] [Reported by Y.Kentaro] Thanks ^^^^^^ * Y.Kentaro * WING * shizuin * YOSHIDA Mitsuo * @memorycraft -- HAYASHI Kentaro <ha...@cl...> |