sphinx 仅重置一个过滤器
我有狮身人面像对象。我从sphinx得到了所有结果。现在我需要再次运行搜索而不重置完整的对象。我只需要重置一个过滤器。
这是我的过滤器,我需要重置 $sphinx->SetFilter("cid", $category_ids);
如何只重置一个过滤器?我需要从过滤器中完全删除旧值。
I have sphinx object. I got all the result from sphinx. Now I need to run the search again with out resetting the complete object. I just need to reset a single filter .
This is my filter I need to reset
$sphinx->SetFilter("cid", $category_ids);
How can I reset one filter only. I need old values to be removed completely from filter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加到您的 SphinxClient 类中
然后运行
$SphinxClient->RemoveFilter('your filter');
以删除过滤器。Add this to your SphinxClient class
Then run
$SphinxClient->RemoveFilter('your filter');
to remove the filter.