Book Image

MariaDb Essentials

Book Image

MariaDb Essentials

Overview of this book

This book will take you through all the nitty-gritty parts of MariaDB, right from the creation of your database all the way to using MariaDB’s advanced features. At the very beginning, we show you the basics, that is, how to install MariaDB. Then, we walk you through the databases and tables of MariaDB, and introduce SQL in MariaDB. You will learn about all the features that have been added in MariaDB but are absent in MySQL. Moving on, you’ll learn to import and export data, views, virtual columns, and dynamic columns in MariaDB. Then, you’ll get to grips with full-text searches and queries in MariaDb. You’ll also be familiarized with the CONNECT storage engine. At the end of the book, you’ll be introduced to the community of MariaDB.
Table of Contents (15 chapters)
MariaDB Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Mroonga


If you try to perform full-text searches in a document in the Chinese, Japanese, or Korean languages, you will notice that it either doesn't work very well or not at all.

The default full-text search feature uses spaces to separate words in a document. However, these languages usually do not use spaces as delimiters. As a result, standard full-text search engines are ineffective with the CJK languages. Moreover, these languages contain many words with less than four characters. So, the standard search method is not adapted at all, as it ignores short words with four or less characters by default.

A project was started in 2008 to try and solve this problem. The project was called Senna, and it tried to add Japanese language support to the full-text search feature of MySQL.

From 2011 onwards, a new project called Groonga, presented as the successor of Senna, started providing regular releases of a generic library that provides connections to different DBMSs. Mroonga is the MySQL storage...