We recently upgraded from 4.5.0 to 4.10.4. I tried getting a list of our
synonyms like this:

http://localhost/solr/default-collection/schema/analysis/synonyms/english

I got a not found error. I found this page on new features in 4.8

http://yonik.com/solr-4-8-features/

Do we have to do something like this with our schema to even get the
synonyms API working?

<!-- A text type for English text where stopwords and synonyms are managed
using the REST API -->
<fieldType name="managed_en" class="solr.TextField"
positionIncrementGap="100">
  <analyzer>
    <tokenizer class="solr.StandardTokenizerFactory"/>
    <filter class="solr.ManagedStopFilterFactory" managed="english" />
    <filter class="solr.ManagedSynonymFilterFactory" managed="english" />
  </analyzer>
</fieldType>

I wanted to ask before changing our schema.

Thanks,

Mike

Reply via email to