admin管理员组文章数量:1345090
I'm fetching a document by id using SolrJ, like this:
HashMap<String,String> params = new HashMap<String,String>();
params.put("fl", "*");
SolrDocument doc = solr.getById(documentId, new MapSolrParams(params));
The SolrDocument coming back, when printed just using .toString()
, contains all of the "real" fields of the document such as "id", "version", etc. but it does not include any of the several "copy fields" I have defined.
When using the Solr web interface, searching for this document from the "Query" screen returns all fields, including the copy-fields.
I tried adding fl=*
to the parameters, but that didn't change the behavior.
I changed my code to perform a search for id:[document-id]
and all fields are returned as expected.
Is there something else I need to add to my getById
call in order to return all fields?
本文标签: solrWhy is SolrJ not returning copyfieldsStack Overflow
版权声明:本文标题:solr - Why is SolrJ not returning copy-fields? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743767093a2535420.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论