Available in Classic
These are search result post-processing settings.
Syntax
The syntax is as follows.
private String section_name;
private Object result_processing;
Field
The following describes the fields.
Field | Type | Required | Description |
---|---|---|---|
section_name |
String | Required | Specify a section to base post-processing on
|
result_processing |
Object | Required | Object in the form of a map that specifies the post-processing of search results
|
Examples
The following is a sample search request.
{
"search": {
"content": {
"main": {
"query": "keyboard"
}
}
},
"result_processing": {
"writer": {
"remove_duplicate": true
}
}
}