Class: OpenSearch::DSL::Search::Highlight
- Inherits:
-
Object
- Object
- OpenSearch::DSL::Search::Highlight
- Includes:
- BaseComponent
- Defined in:
- lib/opensearch/dsl/search/highlight.rb
Overview
Wraps the ‘highlight` part of a search definition
Instance Method Summary collapse
-
#encoder(value) ⇒ Object
(also: #encoder=)
Specify the ‘encoder` option for highlighting.
-
#field(name, options = {}) ⇒ Object
Specify a single field to highlight.
-
#fields(value_or_name) ⇒ Object
Specify the fields to highlight.
-
#initialize(*args, &block) ⇒ Highlight
constructor
A new instance of Highlight.
-
#post_tags(*value) ⇒ Object
(also: #post_tags=)
Specify the closing tags for the highlighted snippets.
-
#pre_tags(*value) ⇒ Object
(also: #pre_tags=)
Specify the opening tags for the highlighted snippets.
-
#tags_schema(value) ⇒ Object
(also: #tags_schema=)
Specify the ‘tags_schema` option for highlighting.
-
#to_hash ⇒ Hash
Convert the definition to a Hash.
Methods included from BaseComponent
Constructor Details
#initialize(*args, &block) ⇒ Highlight
Returns a new instance of Highlight.
37 38 39 40 |
# File 'lib/opensearch/dsl/search/highlight.rb', line 37 def initialize(*args, &block) @value = args.pop || {} super end |
Instance Method Details
#encoder(value) ⇒ Object Also known as: encoder=
Specify the ‘encoder` option for highlighting
95 96 97 |
# File 'lib/opensearch/dsl/search/highlight.rb', line 95 def encoder(value) @value[:encoder] = value end |
#field(name, options = {}) ⇒ Object
Specify a single field to highlight
77 78 79 |
# File 'lib/opensearch/dsl/search/highlight.rb', line 77 def field(name, ={}) (@value[:fields] ||= {}).update name.to_sym => end |
#fields(value_or_name) ⇒ Object
Specify the fields to highlight
53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/opensearch/dsl/search/highlight.rb', line 53 def fields(value_or_name) value = case value_or_name when Hash value_or_name when Array value_or_name.reduce({}) { |sum, item| sum.update item.to_sym => {}; sum } else end (@value[:fields] ||= {}).update value self end |
#post_tags(*value) ⇒ Object Also known as:
Specify the closing tags for the highlighted snippets
89 90 91 |
# File 'lib/opensearch/dsl/search/highlight.rb', line 89 def (*value) @value[:post_tags] = value.flatten end |
#pre_tags(*value) ⇒ Object Also known as:
Specify the opening tags for the highlighted snippets
83 84 85 |
# File 'lib/opensearch/dsl/search/highlight.rb', line 83 def (*value) @value[:pre_tags] = value.flatten end |
#tags_schema(value) ⇒ Object Also known as:
Specify the ‘tags_schema` option for highlighting
101 102 103 |
# File 'lib/opensearch/dsl/search/highlight.rb', line 101 def (value) @value[:tags_schema] = value end |
#to_hash ⇒ Hash
Convert the definition to a Hash
109 110 111 112 113 |
# File 'lib/opensearch/dsl/search/highlight.rb', line 109 def to_hash call @hash = @value @hash end |