Informazioni su mroonga

mroonga, precedentemente chiamato groonga, è stato incluso in MariaDB 5.3.

mroonga è uno Storage Engine per la ricerca fulltext, basato sulla libreria groonga, che è appunto un engine di ricerca CJK-ready.

Con mroonga è possibile ottenere una funzionalità di ricerca CJK-ready ed è più veloce del fulltext di MyISAM sia nella ricerca sia nella modifica dei dati.

Installazione

Se si compila mroonga come plugin, occorre abilitarlo con la seguente istruzione SQL.

mysql> INSTALL PLUGIN groonga SONAME 'ha_mroonga.so';

Si installi poi una UDF (User-Defined Function) chiamata "last_insert_grn_id" (che restituisce l'id del record assegnato da mroonga con una INSERT) con la seguente istruzione SQL. ¶

mysql> CREATE FUNCTION last_insert_grn_id RETURNS INTEGER SONAME 'ha_mroonga.so';

Ulteriori informazioni

Ulteriori informazioni su mroonga: http://mroonga.github.com/docs/

Commenti

Sto caricando i commenti......
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.