在 solr 中搜索文本时,我试图在结果中获取搜索词的偏移量。例如:
q=id:123456+((description:"abcde"+document:"abcde"+author:"abcde"))&fl=id,codes&sort=service_date+desc
作为回应,我想要:
{
"offset":"";
}
目前我在代码中得到响应后手动计算。
我正在阅读术语向量(https://lucene.apache.org/solr/guide/7_2/the-term-vector-component.html),但我不确定。如果有人可以用任何有用的方法指导我。