Sphinx官方自带的api有 PHP, Python, Java, Ruby, and pure C,还有其它开源的api如下:
- Perl API port, Sphinx::Search, by Jon Schutz
- C++ API port, C++ Sphinx client, by Seznam.cz
- Haskell API port, Haskell Sphinx client, by Tupil
- C# API port, C# .NET client, by Christopher Gooley
drwxr-xr-x 2 chenzehe chenzehe 4096 2009-12-02 java
drwxr-xr-x 2 chenzehe chenzehe 4096 2009-12-02 libsphinxclient
drwxr-xr-x 5 chenzehe chenzehe 4096 2009-12-02 ruby
-rw-r--r-- 1 chenzehe chenzehe 44399 2009-11-07 sphinxapi.php
-rw-r--r-- 1 chenzehe chenzehe 26251 2009-11-07 sphinxapi.py
-rw-r--r-- 1 chenzehe chenzehe 1053 2007-11-16 test2.php
-rw-r--r-- 1 chenzehe chenzehe 579 2006-11-23 test2.py
-rw-r--r-- 1 chenzehe chenzehe 5656 2009-11-07 test.php
-rw-r--r-- 1 chenzehe chenzehe 3331 2009-11-07 test.py
其中sphinxapi.py就是python的api,test.py和test2.py是该api的测试实例。
启动searchd守护进程:
进入sphinx的安装目录的bin文件夹下,看到有如下文件:
总计 25436
-rwxr-xr-x 1 root root 5144646 11-14 15:14 indexer
-rwxr-xr-x 1 root root 4971942 11-14 15:14 indextool
-rwxr-xr-x 1 root root 5032457 11-14 15:14 search
-rwxr-xr-x 1 root root 5883521 11-14 15:14 searchd
-rwxr-xr-x 1 root root 4920843 11-14 15:14 spelldump
这里是由于安装了中文分词组件coreseek,所以安装目录就放在了coreseek下了,要是没安装该组件,这些的的安装也是在sphinx的安装目录下的bin文件中,
其中:
indexer是创建索引的工具;
search为一个简单的命令行(CLI) 的测试程序,用于测试全文索引;
searchd
: 一个守护进程,其他软件可以通过这个守护进程进行全文检索;
spelldump
: 一个简单的命令行工具,用于从 ispell
或 MySpell
(OpenOffice内置绑定) 格式的字典中提取词条。当使用 wordforms 时可用这些词条对索引进行定制;
indextool
: 工具程序,用来转储关于索引的多项调试信息。 此工具是从版本Coreseek 3.1(Sphinx 0.9.9-rc2)开始加入的 ;
由上面可知只有启动searchd进程,才能让应用程序进行搜索,运行一下该文件即可启动该进程,如下:
[root@localhost bin]# ps #查看searchd进程
PID TTY TIME CMD
4388 pts/1 00:00:00 bash
6306 pts/1 00:00:00 mysqld_safe
15692 pts/1 00:00:00 searchd
16139 pts/1 00:00:00 ps
此时searchd的进程已启动了,下面运行一下test.py测试文件看一下运行效果:
Query 'test ' retrieved 3 of 3 matches in 0.004 sec
Query stats:
'test' found 10 times in 6 documents
Matches:
1. doc_id=1, weight=101, group_id=1, date_added=2010-11-14 16:36:36
2. doc_id=2, weight=101, group_id=1, date_added=2010-11-14 16:36:36
3. doc_id=4, weight=1, group_id=2, date_added=2010-11-14 16:36:36
也可以在eclipse中运行该测试,打开eclipse,新建一个python项目,把sphinx.py、test.py、test2.py拷到该项目的目录下,设置一下test.py运行时的参数为test即可,点中test.py->右键->Run As->Run Configuration->Arguments,在里面输入运行时参数test,运行就能输出跟上面一样的结果了。
Django调用Sphinx要用到django-sphinx,该项目地址为https://github.com/dcramer/django-sphinx,官方介绍如下:
This is a layer that functions much like the Django ORM does except it works on top of the Sphinx full-text search engine.
Please Note: You will need to create your own sphinx indexes and install sphinx on your server to use this app.
从http://pypi.python.org/pypi/django-sphinx/ 上下载下来进行安装:
来源:https://www.cnblogs.com/chenzehe/archive/2011/04/30/1883362.html