GregE
GregE

Reputation: 41

Solr: Synonyms using the Managed Resources REST API

How do I change an initArgs value for Synonyms using the Managed Resources REST API?

In particular, I need to change the following:

"initArgs":{"ignoreCase":false}

... to true.

https://cwiki.apache.org/confluence/display/solr/Managed+Resources#ManagedResources-Synonyms

I don't see any mention in the documentation about changing initArgs.

You can edit the file directly after it has been created, but the docs explicitly say this is not the correct way to change data in this file. (it does work however).

Upvotes: 4

Views: 2112

Answers (1)

Besnik
Besnik

Reputation: 6529

found it. try&error style ;-)

curl -X POST -H 'Content-type:application/json' --data-binary '{"initArgs":{"ignoreCase":true}}' "http://<solr-host>/solr/<core>/schema/analysis/synonyms/german"

Upvotes: 8

Related Questions