第 11 章 Sphinx
http://sphinxsearch.com/ sudo apt-get install sphinxsearch /etc/sphinxsearch/sphinx.conf sudo cp /etc/sphinxsearch/sphinx-min.conf.dist /etc/sphinxsearch/sphinx.conf 创建测试数据库并导入测试数据 $ wget http://sphinxsearch.googlecode.com/svn/trunk/example.sql $ mysql -h localhost -uroot -p < example.sql $ mysql -h localhost -uroot -p CREATE USER 'test'@'localhost' IDENTIFIED BY ''; GRANT SELECT ON test.* TO 'test'@'localhost'; FLUSH PRIVILEGES; mysql> quit $ echo "select * from documents" | mysql -utest ...