本文整理了Java中com.algolia.search.saas.Query.setAttributesToHighlight
方法的一些代码示例,展示了Query.setAttributesToHighlight
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.setAttributesToHighlight
方法的具体详情如下:
包路径:com.algolia.search.saas.Query
类名称:Query
方法名:setAttributesToHighlight
[英]Deprecated, use #setAttributesToHighlight(String...)
[中]已弃用,请使用#setAttributesToHighlight(字符串…)
代码示例来源:origin: algolia/instantsearch-android
@Nullable
@Override
public Cursor query(@NonNull Uri uri, @Nullable String[] projection, @Nullable String selection, @Nullable String[] selectionArgs, @Nullable String sortOrder) {
MatrixCursor cursor = new MatrixCursor(COLUMN_NAMES);
final String query = uri.getLastPathSegment().toLowerCase();
try {
SearchResults results = new SearchResults(index.searchSync(new Query(query).setHitsPerPage(getLimit()).setAttributesToHighlight("query")));
for (int i = 0; i < results.hits.length(); i++) {
JSONObject hit = results.hits.getJSONObject(i);
final String suggestion = hit.getString("query");
if (!suggestion.equalsIgnoreCase(query)) {
String displaySuggestion = shouldReturnHighlightResult ? getHighlightedSuggestion(hit) : suggestion;
cursor.addRow(new Object[]{hit.getString("objectID").hashCode(), displaySuggestion, suggestion});
}
}
return cursor;
} catch (AlgoliaException e) {
throw new RuntimeException(e);
} catch (JSONException e) {
throw new RuntimeException(e);
}
}
代码示例来源:origin: algolia/algoliasearch-client-java
queries.add(new IndexQuery(this.indexName, new Query(query).setHitsPerPage(0).enableAnalytics(false).setAttributesToRetrieve(new ArrayList<String>()).setAttributesToHighlight(new ArrayList<String>()).setAttributesToSnippet(new ArrayList<String>()).setFacets(facets).setFacetFilters(filters.toString())));
代码示例来源:origin: algolia/algoliasearch-client-android
.setAttributesToRetrieve().setAttributesToHighlight().setAttributesToSnippet()
.setFacets(facets).setFacetFilters(facetFilters));
代码示例来源:origin: algolia/algoliasearch-client-java
attributesToRetrieve.add("objectID");
query.setAttributesToRetrieve(attributesToRetrieve);
query.setAttributesToHighlight(new ArrayList<String>());
query.setAttributesToSnippet(new ArrayList<String>());
query.setHitsPerPage(1000);
代码示例来源:origin: algolia/algoliasearch-client-android
@Test
public void attributesToHighlight() {
Query query = new Query();
assertNull(query.getAttributesToHighlight());
query.setAttributesToHighlight("foo", "bar");
assertArrayEquals(new String[]{"foo", "bar"}, query.getAttributesToHighlight());
assertEquals("[\"foo\",\"bar\"]", query.get("attributesToHighlight"));
assertArrayEquals(query.getAttributesToHighlight(), Query.parse(query.build()).getAttributesToHighlight());
query.setAttributesToHighlight(Arrays.asList("foo", "bar"));
assertArrayEquals(new String[]{"foo", "bar"}, query.getAttributesToHighlight());
assertEquals("[\"foo\",\"bar\"]", query.get("attributesToHighlight"));
assertArrayEquals(query.getAttributesToHighlight(), Query.parse(query.build()).getAttributesToHighlight());
}
内容来源于网络,如有侵权,请联系作者删除!