Solr query and double quotes

When I pass requests to solr, I pass them as strings ("blah blah"). I do this because I have problems with Greek encoding (my input field accepts Greek characters only as a string). But solr sees the characters inside the quotes as the term "exact match." Is there a way to remove double quotes from Solr?

thank

+3
source share
1 answer

If you use solr.StrField in your schema, it makes sense to get exact matches, see http://azeckoski.blogspot.com/2009/06/tricky-solr-schema-issue-with-strfield.html

solr.TextField , . , . ?

: http://wiki.apache.org/solr/LanguageAnalysis#Greek , , , ...

+1

All Articles