SOLR responses should contain only externalized values
------------------------------------------------------
Key: SOLR-1555
URL: https://issues.apache.org/jira/browse/SOLR-1555
Project: Solr
Issue Type: Bug
Affects Versions: 1.4
Environment: Windows XP, Linux Fedora, Tomcat 5/6, Java 1.6
Reporter: Chantal Ackermann
Some components like MoreLikeThis and TermVectorComponent return the internal
representations of sortable fields (like SortableIntField etc.) instead of the
externalized, regular value.
Examples:
MoreLikeThis with param interestingTerms=details
<lst name="interestingTerms">
<float name="cat:#0;č">0.6201604</float>
<float name="cat:#0;Ā">0.38558286</float>
</lst>
TermVectorComponent
<lst name="termVectors">
−
<lst name="doc-0">
<str name="uniqueKey">#8;#0;#0;ϐ㭍</str>
A work around is only possible if the client can add and use the required jar
files to its classpath (for non-Java clients this is most probably a no-go).
Use the static method indexedToReadable() on the correct subclass of FieldType
to convert the value.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.