其他分享
首页 > 其他分享> > sphinx 文档ID过滤

sphinx 文档ID过滤

作者:互联网

sphinx 是无法直接通过文档ID进行过滤的,如果要排除某些文档ID,需要创建列的别名,来设置属性。

    sql_query = SELECT id, id as attrid, FROM table
    sql_attr_uint = attrid

如果按照下面的方式,将会不会返回结果的。

    sql_query = SELECT id as attrid, FROM table
    sql_attr_uint = attrid

PHP过滤如下:

$SphinxClient->SetFilter('attrid',$ids);

标签:sphinx,ID,过滤,文档,sql,attrid,id
来源: https://blog.csdn.net/i289292951/article/details/121850836