@@ -340,9 +340,6 @@ get_version_1: |-
340340 client.getVersion();
341341distinct_attribute_guide_1 : |-
342342 client.index("jackets").updateDistinctAttributeSettings("product_id");
343- field_properties_guide_searchable_1 : |-
344- String[] attributes = {"title", "overview", "genres"}
345- client.index("movies").updateSearchableAttributesSettings(attributes);
346343field_properties_guide_displayed_1 : |-
347344 String[] attributes = {"title", "overview", "genres", "release_date"}
348345 client.index("movies").updateDisplayedAttributesSettings(attributes);
@@ -358,9 +355,6 @@ filtering_guide_3: |-
358355filtering_guide_nested_1 : |-
359356 SearchRequest searchRequest = SearchRequest.builder().q("thriller").filter(new String[] {"rating.users >= 90"}).build();
360357 client.index("movie_ratings").search(searchRequest);
361- search_parameter_guide_show_ranking_score_details_1 : |-
362- SearchRequest searchRequest = SearchRequest.builder().q("dragon").showRankingScoreDetails(true).build();
363- client.index("movies").search(searchRequest);
364358synonyms_guide_1 : |-
365359 HashMap<String, String[]> synonyms = new HashMap<String, String[]>();
366360 synonyms.put("great", new String[] {"fantastic"});
@@ -626,8 +620,6 @@ export_post_1: |-
626620 client.export(request);
627621compact_index_1 : |-
628622 client.index("INDEX_NAME").compact();
629- rename_an_index_1 : |-
630- client.updateIndex("indexA", null, "indexB");
631623webhooks_get_1 : |-
632624 client.getWebhooks();
633625webhooks_get_single_1 : |-
0 commit comments