gpt4 book ai didi

php - Zend Lucene 查询

转载 作者:可可西里 更新时间:2023-10-31 22:58:25 25 4
gpt4 key购买 nike

我在 Lucene 中存储数据时添加了这些字段:

$index->addField(Zend_Search_Lucene_Field::Keyword('id', $entry->id));
$index->addField(Zend_Search_Lucene_Field::Keyword('type', $entry->type));

如何进行查询以仅检索特定类型的数据?

我试过:

 $query = "type IN ('a', 'b', 'c')"; // get data that has either of these types
$this->query->addSubquery(Zend_Search_Lucene_Search_QueryParser::parse($query), true);

但它不起作用...

最佳答案

我的解决方案是:

$query = "type:(a) OR type:(b)";

也可以这样写(字段分组):

$query = "type:(a OR b)";

关于php - Zend Lucene 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7310193/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com