Package:Sphinx

From Funtoo
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Sphinx

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Sphinx search is an alternate method to query database content. It's goal is to be fast and light weight.

Install

root # emerge app-misc/sphinx

Configure

Copy the well commented configuration file into production location:

root # cp /etc/sphinx/sphinx.conf.dist /etc/sphinx/sphinx.conf

Set the database credentials to query:

   /etc/sphinx/sphinx.conf (sql source code) - Change database to the database sphinx will be searching
sql_host		= localhost
	sql_user		= test
	sql_pass		=
	sql_db			= test
	sql_port		= 3306	# optional, default is 3306

To enable service, and start immediately:

root # rc-update add searchd default && rc