Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Umbraco 项目中实施了检查,并创建了我网站内容的索引。我现在需要的是存储在该索引中的任何给定字段的术语列表。
此术语列表将作为 UI 表单的自动完成搜索字段的基础。
如何根据特定字段(例如 nodeName)检索此术语列表?
请注意,我不想搜索 nodeName 字段。我希望读取/检索与该字段关联的索引中的术语。
你可以试试这个:
reader.terms(new Term("nodeName", ""));
这似乎是不可能的,但由于 Examine 库是基于 Lucene 库的,所以这是一个“自己动手”的问题,只需使用该方法打开和询问一个IndexReader实例。reader.Terms()
IndexReader
reader.Terms()