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

sphinx 字符串过滤

时间:2017-06-28 13:17:22      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:配置文件   支持   文件   type   int   phi   rom   推荐   filter   

sphinx 不支持字符串作为属性过滤。要使用字符串进行过滤可以使用下面的两者方法进行解决:
属性查询

需要在sphinx配置文件中定义文本字段,当查询索引时,参考其字段。sphinx配置如下:

SELECT id, user_type \
FROM users
sql_field_string = user_type


在PHP语言中,这么使用:

$matches = $this->sphinxClient->Query(‘@user_type "^admin$"‘);

全文搜索列

推荐使用这种方法。sphinx配置如下:

SELECT id, CRC32(user_type) AS user_type \
FROM users
sql_attr_int = user_type

PHP语言中,这么使用:

$this->sphinxClient->SetFilter(‘user_type‘, array(crc32(‘admin‘));

sphinx 字符串过滤

标签:配置文件   支持   文件   type   int   phi   rom   推荐   filter   

原文地址:http://www.cnblogs.com/LoveJulin/p/7089057.html

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