sphinx 仅重置一个过滤器

发布于 2025-01-08 04:25:51 字数 169 浏览 0 评论 0原文

我有狮身人面像对象。我从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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你怎么这么可爱啊 2025-01-15 04:25:51

将其添加到您的 SphinxClient 类中

<?php
   function RemoveFilter ( $attribute )
   {
      assert ( is_string($attribute) );

      foreach($this->_filters AS $key => $filter){
         if($filter['attr'] == $attribute){
            unset($this->_filters[$key]);
            break;
         }
      }
   }
?>

然后运行 ​​$SphinxClient->RemoveFilter('your filter'); 以删除过滤器。

Add this to your SphinxClient class

<?php
   function RemoveFilter ( $attribute )
   {
      assert ( is_string($attribute) );

      foreach($this->_filters AS $key => $filter){
         if($filter['attr'] == $attribute){
            unset($this->_filters[$key]);
            break;
         }
      }
   }
?>

Then run $SphinxClient->RemoveFilter('your filter'); to remove the filter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文