SearchResultProcessing

Prev Next

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
  • Select from previously created sections
result_processing Object Required Object in the form of a map that specifies the post-processing of search results
  • key: post-processing method
    • <Example> Remove duplicates: "remove_duplicate"
  • value: whether to use post-processing methods
    • true | false

Examples

The following is a sample search request.

{
  "search": {
    "content": {
      "main": {
        "query": "keyboard"
      }
    }
  },
  "result_processing": {
    "writer": {
      "remove_duplicate": true
    }
  }
}