码迷,mamicode.com
首页 > 其他好文 > 详细

sphinx的联合查询(sphinx配置篇)

时间:2015-07-22 22:37:11      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

下面举例说明,sphinx的联合查询用法。

 

一,添加二张测试表和数据

1,users表和数据

  1. mysql> desc users;  
  2. +----------+-------------+------+-----+---------+----------------+  
  3. | Field | Type | Null | Key | Default | Extra |  
  4. +----------+-------------+------+-----+---------+----------------+  
  5. | user_id | int(11) | NO | PRI | NULL | auto_increment |  
  6. | username | varchar(20) | NO | | NULL | |  
  7. +----------+-------------+------+-----+---------+----------------+  
  8. 2 rows in set (0.00 sec)  
  9.   
  10. mysql> select * from users;  
  11. +------------+------------+  
  12. | user_id | username |  
  13. +------------+------------+  
  14. | 1311895262 | 张三 |  
  15. | 1311895263 | tank张二 |  
  16. | 1311895264 | tank张一 |  
  17. | 1311895265 | tank张 |  
  18. +------------+------------+  
  19. 4 rows in set (0.00 sec)  

 2,orders表和数据

  1. mysql> desc orders;  
  2. +--------------+-------------+------+-----+---------+----------------+  
  3. | Field | Type | Null | Key | Default | Extra |  
  4. +--------------+-------------+------+-----+---------+----------------+  
  5. | id | int(11) | NO | PRI | NULL | auto_increment |  
  6. | user_id | int(11) | NO | | NULL | |  
  7. | create_time | datetime | NO | | NULL | |  
  8. | product_name | varchar(20) | NO | | NULL | |  
  9. | summary | text | NO | | NULL | |  
  10. +--------------+-------------+------+-----+---------+----------------+  
  11. 5 rows in set (0.00 sec)  
  12.   
  13. mysql> select * from orders;  
  14. +----+------------+---------------------+----------------+--------------+  
  15. | id | user_id | create_time | product_name | summary |  
  16. +----+------------+---------------------+----------------+--------------+  
  17. | 9 | 1311895262 | 2014-08-01 00:24:54 | tank is 坦克 | 技术总监 |  
  18. | 10 | 1311895263 | 2014-08-01 00:24:54 | tank is 坦克 | 技术经理 |  
  19. | 11 | 1311895264 | 2014-08-01 00:24:54 | tank is 坦克 | DNB经理 |  
  20. | 12 | 1311895265 | 2014-08-01 00:24:54 | tank is 坦克 | 运维总监 |  
  21. +----+------------+---------------------+----------------+--------------+  
  22. 4 rows in set (0.00 sec)  

二,配置sphinx.conf

  1. source order  
  2. {  
  3.  type = mysql  
  4.  sql_host = localhost  
  5.  sql_user = root  
  6.  sql_pass =  
  7.  sql_db = test  
  8.  sql_query_pre = SET NAMES utf8  
  9.  sql_query = \  
  10.  SELECT a.id, a.user_id,b.username, UNIX_TIMESTAMP(a.create_time) AS create_time, a.product_name, a.summary \  
  11.  FROM orders a left join users b on a.user_id = b.user_id  
  12.  sql_attr_uint = user_id  
  13.  sql_field_string = username  
  14.  sql_field_string = product_name  
  15.  sql_attr_timestamp = create_time  
  16.  sql_ranged_throttle = 0  
  17.  sql_query_info = SELECT * FROM orders WHERE id=$id  
  18. }  
  19.   
  20. index myorder  
  21. {  
  22.  source = order  
  23.  path = /usr/local/sphinx/var/data/myorder  
  24.  docinfo = extern  
  25.  mlock = 0  
  26.  morphology = none  
  27.  min_word_len = 1  
  28.  charset_dictpath = /usr/local/mmseg3/etc/  
  29.  charset_type = zh_cn.utf-8  
  30.  ngram_len = 0  
  31.  html_strip = 0  
  32. }  

注意:在这里a.user_id = b.user_id,等号二边一定要有空格,不然就会报错。

三,重启sphinx

  1. # pkill searchd  
  2. # /usr/local/sphinx/bin/indexer --config /usr/local/sphinx/etc/sphinx.conf --all  
  3. # /usr/local/sphinx/bin/searchd --config /usr/local/sphinx/etc/sphinx.conf  

四,测试sphinx

  1. [root@localhost etc]# mysql -h 127.0.0.1 -P 9306                     //登录sphinx,9306端口,不是真实的mysql  
  2. Welcome to the MySQL monitor. Commands end with ; or \g.  
  3. Your MySQL connection id is 1  
  4. Server version: 1.11-id64-dev (r2540)  
  5.   
  6. Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.  
  7.   
  8. Oracle is a registered trademark of Oracle Corporation and/or its  
  9. affiliates. Other names may be trademarks of their respective  
  10. owners.  
  11.   
  12. Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.  
  13.   
  14. mysql> select * from myorder where match(‘张‘);  
  15. +------+--------+------------+------------+-------------+----------------+  
  16. | id | weight | user_id | username | create_time | product_name |  
  17. +------+--------+------------+------------+-------------+----------------+  
  18. | 9 | 1304 | 1311895262 | 张三 | 1406823894 | tank is 坦克 |  
  19. | 10 | 1304 | 1311895263 | tank张二 | 1406823894 | tank is 坦克 |  
  20. | 11 | 1304 | 1311895264 | tank张一 | 1406823894 | tank is 坦克 |  
  21. | 12 | 1304 | 1311895265 | tank张 | 1406823894 | tank is 坦克 |  
  22. +------+--------+------------+------------+-------------+----------------+  
  23. 4 rows in set (0.01 sec)  
  24.   
  25. mysql> select * from myorder where match(‘张三‘);  
  26. +------+--------+------------+----------+-------------+----------------+  
  27. | id | weight | user_id | username | create_time | product_name |  
  28. +------+--------+------------+----------+-------------+----------------+  
  29. | 9 | 2500 | 1311895262 | 张三 | 1406823894 | tank is 坦克 |  
  30. +------+--------+------------+----------+-------------+----------------+  
  31. 1 row in set (0.00 sec)  

sphinx的联合查询(sphinx配置篇)

标签:

原文地址:http://www.cnblogs.com/yueryuermaomao/p/4668788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!