SearchSetting
- Print
- PDF
SearchSetting
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in Classic
These are other preferences for searching.
Syntax
The syntax is as follows.
private String transfer_timeout;
private String search_timeout;
private String ranking_value;
private String use_df;
private String reuse_term_extractor;
Field
The following describes the fields.
Field | Type | Required | Description |
---|---|---|---|
transfer_timeout | String, Integer | Optional | Transfer timeout |
search_timeout | String, Integer | Optional | Search timeout |
ranking_value | String, Boolean | Optional | Whether to display ranking variable values in results
|
use_df | String, Boolean | Optional | Whether to use the idf value
|
reuse_term_extractor | String, Boolean | Optional | Save the term analyzer created by the term_extractor option to the server
|
Examples
The following is a sample search request.
{
...,
"setting": {
"transfer_timeout": 30,
"search_timeout": 30,
"ranking_value": true,
"use_df": true,
"reuse_term_extractor": true
}
}
Was this article helpful?