Mroonga 14.10 has been released
Mroonga 14.10 has been released!
How to install: Install
Changes
Please refer the following link.
Mroonga 14.10 has been released!
How to install: Install
Please refer the following link.
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.
Mroonga 14.08 has been released!
Here are important changes in this release:
We use CMake for building instead of the GNU Autotools.
Using configure
is deprecated. We recommend using cmake
to build from source.
Please refer Others about how to build from source with cmake
.
Fixed a bug that SELECT
returned wrong result when we used multiple primary keys and primary keys included VARBINARY
or BLOB
type column.
This bug only occurred in Mroonga 14.07.
This bug doesn’t break an index. So, we don’t need to execute REINDEX
command after this fix.
If this bug occurred, the following query retrieved nothing.
CREATE TABLE logs (
id INT,
content VARBINARY(256),
PRIMARY KEY (id, content)
) ENGINE=Mroonga DEFAULT CHARSET=utf8mb4;
INSERT INTO logs(id, content) VALUES (1, 'aaa');
INSERT INTO logs(id, content) VALUES (2, 'bbb');
SELECT * FROM logs WHERE content = 'aaa';
Let's search by Mroonga!
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.
Mroonga 14.07 has been released!
Here are important changes in this release:
We added support for MariaDB as below.
We added support for MySQL, MariaDB, and Percona Server as below.
Debian GNU/Linux 12 (bookworm)
Disable descending index support
If we don't add support for descending index with MariaDB >= 10.8, Mroonga returns wrong result with descending index. So, we disable descending index support now. However, we may re-try it later.
By the way, if we use descending index with MySQL >= 8.0, MySQL returns error.
FLUSH TABLES
and INSERT
.Let's search by Mroonga!
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.
Mroonga 14.04 has been released!
This is long time no release!
Here are important changes in this release:
We support for OS as below.
We support for MySQL, MariaDB, and Percona Server as below.
Debian GNU/Linux 12 (bookworm)
We dropped support for OS as below.
We dropped support for MySQL, MariaDB, and Percona Server as below.
Added functionality to output an error when Mroonga's UDF is used while Mroonga is uninitialized. [MDEV-21166][Reported by Ian Gilfillan.]
Before this fix, using Mroonga's UDF without initializing Mroonga (not having run INSTALL PLUGIN mroonga
) would cause a crash.
This patch changes the output from a crash to logging an error.
Wrapper mode Fixed memory leaks in cases where engines not supporting online DDL are wrapped.
In general, DDL operations like ALTER TABLE
block access to the target table while in progress to maintain exclusive control.
However, some storage engines allow operations on the target table during these operations (they can also be executed exclusively).
The capability to operate on a table during such DDL operations is referred to as online DDL.
The issue addressed occurs when wrapping storage engines that do not support online DDL in Mroonga's wrapper mode. It does not occur in storage mode or when using a combination of wrapper mode + InnoDB.
Storage mode Fixed a bug causing crashes when inserting into tables with compressed VARCHAR
or TEXT
columns. [MDEV-31966][Reported by Elena Stepanova.]
This issue occurs only in storage mode and not in wrapper mode.
Let's search by Mroonga!
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.
Mroonga 13.05 has been released!
Here are important changes in this release:
CentOS, AlmaLinux Added support for Percona Server 5.7.42-46.
CentOS, AlmaLinux Added support for Percona Server 8.0.33-25.
CentOS, AlmaLinux Added support MariaDB 10.4.30, 10.5.21, 10.6.14, 10.8.8, 10.9.7, 10.10.5, and 10.11.4.
CentOS Added support for MariaDB 10.5.19.
CentOS Added newly support for Debian 12 (bookworm).
However, we only support Mroonga with MariaDB 10.11 in this release.
Because the source of MySQL Community Server for Debian 12 doesn't exist in MySQL APT Repository(https://repo.mysql.com/apt/debian/dists/) currently.
Therefore, we don't support Mroonga with MySQL community server 8.0 on Debian 12 temporarily. We will support Mroonga with MySQL community server 8.0 after the source of it for Debian 12 is available.
Dropped support for MariaDB 10.3.
It reached EOL on 2023-05-25.
Please refer to release note about the detail of changes in this release.
Let's search by Mroonga!