[ 
https://issues.apache.org/jira/browse/SOLR-10198?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18055674#comment-18055674
 ] 

David Smiley commented on SOLR-10198:
-------------------------------------

EmbeddedSolrServer is a bit of an advanced/expert thing, and furthermore, 
queryAndStreamResponse doesn't get a lot of use.  So this is an obscure 
issue... hence nobody has acted further in 8 years.  And it's easy to work 
around, albeit I recognize the annoyance factor.  PR welcome :)

The conversion method to call appears to be 
{{org.apache.solr.response.DocsStreamer#getValue}}

> EmbeddedSolrServer embedded behavior different from HttpSolrClient
> ------------------------------------------------------------------
>
>                 Key: SOLR-10198
>                 URL: https://issues.apache.org/jira/browse/SOLR-10198
>             Project: Solr
>          Issue Type: Bug
>          Components: SolrJ
>    Affects Versions: 6.4.1
>            Reporter: Bert Summers
>            Priority: Major
>
> When retrieving the value of a field the object type is different depending 
> on the server type.
> If I have a schema which has <field name="id" type="int" indexed="true" 
> stored="true" required="true" />
> If I do
> solrClient.queryAndStreamResponse("test", new SolrQuery("*:*"), new  
> StreamingResponseCallback {
>         @Override
>         public void streamSolrDocument(final SolrDocument doc) {
>             Object idField = doc.getFieldValue("id");
>         }
>         @Override
>         public void streamDocListInfo(final long numFound, final long start, 
> final Float maxScore) {
>             System.out.println("Found " + numFound + " documents");
>         }
>     });
> in streamSolrDocument the Object type is Integer if the server is http but 
> StoredField if embedded.
> Both the server and embedded use the same schema.xml and solrconfig.xml
> In version 5.1.0 both connections would return the same type (Integer)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to