在 Zend Lucene PHP 中查询精确的字符串
我正在使用 Zend Search Lucene。不过我遇到了一点麻烦。我希望在索引中查询确切的字符串,因此 page_name 是 test123,而不是任何模糊匹配。
目前我有:
$hits = $index->find('page_name:"test123"');
感谢建议,谢谢!
I am using the Zend Search Lucene. However I am having a little trouble. I wish to query the index for the exact string so page_name IS test123, not any fuzzy match.
Currently I have:
$hits = $index->find('page_name:"test123"');
And advice appreciated, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在查询之前,使用此分析器而不是默认的分析器:
Before query, use this analyser instead of the default one: