MYSQL数据库Sphinx/MySQL 协议支持与SphinxQL应用实例
《MYSQL数据库Sphinx/MySQL 协议支持与SphinxQL应用实例》要点: Sphinx的searchd守护程序从版本0.9.9-rc2开始支持MySQL二进制网络协议,并且能够通过标准的MySQL API访问. 以下是用MySQL客户端对Sphinx进行查询的例子:MYSQL学习 代码如下:$ mysql -P 9306 Welcome to the MySQL monitor.? Commands end with ; or g. Your MySQL connection id is 1 Server version: 0.9.9-dev (r1734) Type 'help;' or 'h' for help. Type 'c' to clear the buffer. mysql> SELECT * FROM test1 WHERE MATCH('test') -> ORDER BY group_id ASC OPTION ranker=bm25; +------+--------+----------+------------+ | id?? | weight | group_id | date_added | +------+--------+----------+------------+ |??? 4 |?? 1442 |??????? 2 | 1231721236 | |??? 2 |?? 2421 |????? 123 | 1231721236 | |??? 1 |?? 2421 |????? 456 | 1231721236 | +------+--------+----------+------------+ 3 rows in set (0.00 sec) 开启方法: sphinx还支持SQL的一个很小的子集,我们给这个子集起个绰号,叫SphinxQL. 更多内容使用请参考:http://sphinxsearch.com/docs/1.10/sphinxql-reference.htmlMYSQL学习 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |