solrj - Solr 4.10 returning SolrDocument instances with empty map when dynamic fields are requested -


i upgraded solr 4.9 4.10. @ point in code want return values dynamic fields. if this:

    solrquery query = new solrquery();     query.addfield("code");     query.addfield("name"); 

it returns right values in fields ('code' , 'name').

if this:

    solrquery query = new solrquery();     query.addfield("code");     query.addfield("name");     query.addfield("*_prop"); 

all fields ,including code , name, null.

is there trick missed when moving 4.10?

it bug in solr 4.10.0. fixed per https://issues.apache.org/jira/browse/solr-6501


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -