Update dictionary settings

Turns standard stop word dictionary entries on or off for a given language.

Usage

Required ACL: editSettings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import com.algolia.api.SearchClient;
import com.algolia.model.search.*;

SearchClient client = new SearchClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY");

client.setDictionarySettings(
  new DictionarySettingsParams()
    .setDisableStandardEntries(
      new StandardEntries()
        .setPlurals(
          new HashMap() {
            {
              put("fr", false);
              put("en", false);
              put("ru", true);
            }
          }
        )
    )
);
Did you find this page helpful?
Java API clients v4