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.
我正在使用 solr 建立的引擎对 PMI 进行研究。我想获取语料库中的关键字数量(而不是 numofDocs)。有没有直接的方法来获得这个?另一个问题:我可以在solr系统中搜索包含逻辑运算符(例如NEAR)的搜索吗?或类似的方法来做到这一点?
NEAR是“邻近搜索”;solr 以“草率的短语查询”的形式提供了类似的东西,其形式如下:
NEAR
field:"phrase of words"~10
这10是短语中的单词必须有多接近。
10