Class: Fluent::GroongaOutput::Schema::Table
- Inherits:
-
Object
- Object
- Fluent::GroongaOutput::Schema::Table
- Defined in:
- lib/fluent/plugin/out_groonga.rb
Instance Attribute Summary collapse
-
#default_tokenizer ⇒ Object
readonly
Returns the value of attribute default_tokenizer.
-
#domain ⇒ Object
readonly
Returns the value of attribute domain.
-
#flags ⇒ Object
readonly
Returns the value of attribute flags.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#normalizer ⇒ Object
readonly
Returns the value of attribute normalizer.
-
#range ⇒ Object
readonly
Returns the value of attribute range.
-
#token_filters ⇒ Object
readonly
Returns the value of attribute token_filters.
Instance Method Summary collapse
-
#initialize(name, options = {}) ⇒ Table
constructor
A new instance of Table.
Constructor Details
#initialize(name, options = {}) ⇒ Table
Returns a new instance of Table.
541 542 543 544 545 546 547 548 549 |
# File 'lib/fluent/plugin/out_groonga.rb', line 541 def initialize(name, ={}) @name = name @flags = [:flags] @domain = [:domain] @range = [:range] @default_tokenizer = [:default_tokenizer] @normalizer = [:normalizer] @token_filters = [:token_filters] end |
Instance Attribute Details
#default_tokenizer ⇒ Object (readonly)
Returns the value of attribute default_tokenizer.
538 539 540 |
# File 'lib/fluent/plugin/out_groonga.rb', line 538 def default_tokenizer @default_tokenizer end |
#domain ⇒ Object (readonly)
Returns the value of attribute domain.
536 537 538 |
# File 'lib/fluent/plugin/out_groonga.rb', line 536 def domain @domain end |
#flags ⇒ Object (readonly)
Returns the value of attribute flags.
535 536 537 |
# File 'lib/fluent/plugin/out_groonga.rb', line 535 def flags @flags end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
534 535 536 |
# File 'lib/fluent/plugin/out_groonga.rb', line 534 def name @name end |
#normalizer ⇒ Object (readonly)
Returns the value of attribute normalizer.
539 540 541 |
# File 'lib/fluent/plugin/out_groonga.rb', line 539 def normalizer @normalizer end |
#range ⇒ Object (readonly)
Returns the value of attribute range.
537 538 539 |
# File 'lib/fluent/plugin/out_groonga.rb', line 537 def range @range end |
#token_filters ⇒ Object (readonly)
Returns the value of attribute token_filters.
540 541 542 |
# File 'lib/fluent/plugin/out_groonga.rb', line 540 def token_filters @token_filters end |