|
There is sphinxse.
MariaDB [(none)]> select @@version;
|
+------------------------------+
|
| @@version |
|
+------------------------------+
|
| 10.0.9-MariaDB-1~precise-log |
|
+------------------------------+
|
1 row in set (0.00 sec)
|
MariaDB [(none)]> select plugin_name, plugin_version, plugin_status, plugin_type, plugin_library from information_schema.all_plugins where plugin_name like '%sphinx%';
|
+-------------+----------------+---------------+----------------+----------------+
|
| plugin_name | plugin_version | plugin_status | plugin_type | plugin_library |
|
+-------------+----------------+---------------+----------------+----------------+
|
| SPHINX | 2.0 | NOT INSTALLED | STORAGE ENGINE | ha_sphinx.so |
|
+-------------+----------------+---------------+----------------+----------------+
|
1 row in set (0.00 sec)
|
MariaDB [(none)]> install soname 'ha_sphinx';
|
Query OK, 0 rows affected (0.00 sec)
|
MariaDB [(none)]> show plugins ;
|
+-----------------------------+----------+--------------------+--------------+---------+
|
| Name | Status | Type | Library | License |
|
+-----------------------------+----------+--------------------+--------------+---------+
|
...
|
| SPHINX | ACTIVE | STORAGE ENGINE | ha_sphinx.so | GPL |
|
+-----------------------------+----------+--------------------+--------------+---------+
|
If you meant something else, please be more specific.
|