774673561e
Intented as a clean implementation (replacement) of wip/mysql-sphinxse. SphinxSE is MySQL storage engine which can be compiled into MySQL server 5.x using its pluggable architecture. Despite the name, SphinxSE does not actually store any data itself. It is actually a built-in client which allows MySQL server to talk to searchd, run search queries, and obtain search results. All indexing and searching happen outside MySQL. See http://sphinxsearch.com/docs/current.html#sphinxse-overview
14 lines
491 B
Text
14 lines
491 B
Text
===========================================================================
|
|
$NetBSD: MESSAGE.sphinx,v 1.1 2014/10/17 17:07:44 fhajny Exp $
|
|
|
|
To install the SphinxSE MySQL plugin, log into your MySQL console
|
|
and issue the following query:
|
|
|
|
INSTALL PLUGIN sphinx SONAME 'ha_sphinx.so';
|
|
|
|
You can verify it has been loaded properly by checking whether
|
|
it shows up in the list when list your engines:
|
|
|
|
SHOW ENGINES;
|
|
|
|
===========================================================================
|