Hi,
I use Solr 3.6.0 with a synonym filter as the last filter at index time, using
a list of stemmed terms. When i do a wildcard search that matches a part of an
entry on the synonym list, the synonyms found are used by solr to generate the
search results. I am trying to disable that behaviour,
sine" is a true synonym for "Orange" in german, meaning
"chinese apple". "Apfel" = apple, shouldnt match oranges).
Problem solved, thanks again for the help!
Johannes Rodenwald
- Ursprüngliche Mail -
Von: "Jack Krupansky"
An: solr-user@
value_b OR value_c OR value_d )
If you use SOLR 4.x, you should be able to group upon an integer field,
allowing a range filter:
(I still work with 3.6 which can only group on string fields, so i didnt test
this one)
fq=my_grouping_integer_field:[1 TO *]
--
Johannes Rodenwald
- Ursprüng